![]() |
![]() |
![]() |
GNOME Data Access manual | ![]() |
---|---|---|---|---|
Top | Description |
GdaErrorPrivate; GdaError * gda_error_new (void
); void gda_error_free (GdaError *error
); GList * gda_error_list_copy (const GList *errors
); void gda_error_list_free (GList *errors
); const gchar * gda_error_get_description (GdaError *error
); void gda_error_set_description (GdaError *error
,const gchar *description
); glong gda_error_get_number (GdaError *error
); void gda_error_set_number (GdaError *error
,glong number
); const gchar * gda_error_get_source (GdaError *error
); void gda_error_set_source (GdaError *error
,const gchar *source
); const gchar * gda_error_get_sqlstate (GdaError *error
); void gda_error_set_sqlstate (GdaError *error
,const gchar *sqlstate
);
void gda_error_free (GdaError *error
);
Frees the memory allocated by the error object.
|
the error object. |
GList * gda_error_list_copy (const GList *errors
);
Creates a new list which contains the same errors as errors
and
adds a reference for each error in the list.
You must free the list using gda_error_list_free.
|
a GList holding error objects. |
Returns : |
a list of errors. |
void gda_error_list_free (GList *errors
);
Frees all error objects in the list and the list itself.
After this function has been called, the errors
parameter doesn't point
to valid storage any more.
|
a GList holding error objects. |
const gchar * gda_error_get_description (GdaError *error
);
|
a GdaError. |
Returns : |
error 's description. |
void gda_error_set_description (GdaError *error
,const gchar *description
);
Sets error
's description
.
|
a GdaError. |
|
a description. |
glong gda_error_get_number (GdaError *error
);
|
a GdaError. |
Returns : |
error 's number. |
void gda_error_set_number (GdaError *error
,glong number
);
Sets error
's number
.
|
a GdaError. |
|
a number. |
const gchar * gda_error_get_source (GdaError *error
);
|
a GdaError. |
Returns : |
error 's source. |
void gda_error_set_source (GdaError *error
,const gchar *source
);
Sets error
's source
.
|
a GdaError. |
|
a source. |
const gchar * gda_error_get_sqlstate (GdaError *error
);
|
a GdaError. |
Returns : |
error 's SQL state. |