gda-data-handler.h | gda-data-handler.h | |||
---|---|---|---|---|
skipping to change at line 63 | skipping to change at line 63 | |||
* SECTION:gda-data-handler | * SECTION:gda-data-handler | |||
* @short_description: Interface which provides data handling (conversions) capabilities | * @short_description: Interface which provides data handling (conversions) capabilities | |||
* @title: GdaDataHandler | * @title: GdaDataHandler | |||
* @stability: Stable | * @stability: Stable | |||
* @see_also: | * @see_also: | |||
* | * | |||
* Because data types vary a lot from a DBMS to another, the #GdaDataHandle r interface helps | * Because data types vary a lot from a DBMS to another, the #GdaDataHandle r interface helps | |||
* managing data in its various representations, and converting from one to another: | * managing data in its various representations, and converting from one to another: | |||
* <itemizedlist> | * <itemizedlist> | |||
* <listitem><para>as a #GValue which is a generic value container for th e C language</para></listitem> | * <listitem><para>as a #GValue which is a generic value container for th e C language</para></listitem> | |||
* <listitem><para>as a human readable string</para></listitem> | * <listitem><para>as a human readable string (in the user defined locale )</para></listitem> | |||
* <listitem><para>as an SQL string (a string which can be used in SQL st atements)</para></listitem> | * <listitem><para>as an SQL string (a string which can be used in SQL st atements)</para></listitem> | |||
* </itemizedlist> | * </itemizedlist> | |||
* | * | |||
* For each data type, a corresponding #GdaDataHandler object can be reques ted using the | * For each data type, a corresponding #GdaDataHandler object can be reques ted using the | |||
* <link linkend="gda-data-handler-get-default">gda_data_handler_get_defaul t()</link> function. However, when working | * <link linkend="gda-data-handler-get-default">gda_data_handler_get_defaul t()</link> function. However, when working | |||
* with a specific database provider, it's better to use a #GdaDataHandler which may be specific to the | * with a specific database provider, it's better to use a #GdaDataHandler which may be specific to the | |||
* database provider which will correctly handle each database specifics us ing | * database provider which will correctly handle each database specifics us ing | |||
* <link linkend="gda-server-provider-get-data-handler-g-type">gda_server_p rovider_get_data_handler_g_type()</link> or | * <link linkend="gda-server-provider-get-data-handler-g-type">gda_server_p rovider_get_data_handler_g_type()</link> or | |||
* <link linkend="gda-server-provider-get-data-handler-dbms">gda_server_pro vider_get_data_handler_dbms()</link>. | * <link linkend="gda-server-provider-get-data-handler-dbms">gda_server_pro vider_get_data_handler_dbms()</link>. | |||
*/ | */ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
gda-value.h | gda-value.h | |||
---|---|---|---|---|
skipping to change at line 261 | skipping to change at line 261 | |||
/* Custom data types */ | /* Custom data types */ | |||
GType gda_null_get_type (void) G_GNUC_CONST; | GType gda_null_get_type (void) G_GNUC_CONST; | |||
GType gda_default_get_type (void) G_GNUC_CONST; | GType gda_default_get_type (void) G_GNUC_CONST; | |||
GType gda_numeric_get_type (void) G_GNUC_CONST; | GType gda_numeric_get_type (void) G_GNUC_CONST; | |||
GdaNumeric* gda_numeric_new (void); | GdaNumeric* gda_numeric_new (void); | |||
GdaNumeric* gda_numeric_copy (GdaNumeric *src); | GdaNumeric* gda_numeric_copy (GdaNumeric *src); | |||
void gda_numeric_set_from_string (GdaNumeric * numeric, const gchar* str); | void gda_numeric_set_from_string (GdaNumeric * numeric, const gchar* str); | |||
void gda_numeric_set_double (GdaNumeric *numer ic, gdouble number); | void gda_numeric_set_double (GdaNumeric *numer ic, gdouble number); | |||
gdouble gda_numeric_get_double (GdaNumeric *numer ic); | gdouble gda_numeric_get_double (const GdaNumeric *numeric); | |||
void gda_numeric_set_precision (GdaNumeric *nu meric, glong precision); | void gda_numeric_set_precision (GdaNumeric *nu meric, glong precision); | |||
glong gda_numeric_get_precision (GdaNumeric *nu meric); | glong gda_numeric_get_precision (const GdaNumer ic *numeric); | |||
void gda_numeric_set_width (GdaNumeric *numeri c, glong width); | void gda_numeric_set_width (GdaNumeric *numeri c, glong width); | |||
glong gda_numeric_get_width (GdaNumeric *numeri | glong gda_numeric_get_width (const GdaNumeric * | |||
c); | numeric); | |||
gchar* gda_numeric_get_string (GdaNumeric *numer | gchar* gda_numeric_get_string (const GdaNumeric | |||
ic); | *numeric); | |||
void gda_numeric_free (GdaNumeric *numeric); | void gda_numeric_free (GdaNumeric *numeric); | |||
GType gda_time_get_type (void) G_GNUC_CONST; | GType gda_time_get_type (void) G_GNUC_CONST; | |||
gpointer gda_time_copy (gpointer boxed); | gpointer gda_time_copy (gpointer boxed); | |||
void gda_time_free (gpointer boxed); | void gda_time_free (gpointer boxed); | |||
gboolean gda_time_valid (const GdaTime *time); | gboolean gda_time_valid (const GdaTime *time); | |||
void gda_time_change_timezone (GdaTime *time, glong ntz); | void gda_time_change_timezone (GdaTime *time, glong ntz); | |||
GType gda_timestamp_get_type (void) G_GNUC_CONS T; | GType gda_timestamp_get_type (void) G_GNUC_CONS T; | |||
gpointer gda_timestamp_copy (gpointer boxed); | gpointer gda_timestamp_copy (gpointer boxed); | |||
End of changes. 3 change blocks. | ||||
6 lines changed or deleted | 6 lines changed or added | |||