GNOME Data Access manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
struct GdaServerConnectionPrivate; struct GdaServerProvider; GdaServerConnection* gda_server_connection_new (GdaServerProvider *provider); const gchar* gda_server_connection_get_string (GdaServerConnection *cnc); const gchar* gda_server_connection_get_username (GdaServerConnection *cnc); const gchar* gda_server_connection_get_password (GdaServerConnection *cnc); void gda_server_connection_notify_action (GdaServerConnection *cnc, GNOME_Database_ActionId action, GdaParameterList *params); void gda_server_connection_add_error (GdaServerConnection *cnc, GdaError *error); void gda_server_connection_add_error_string (GdaServerConnection *cnc, const gchar *msg, ...); void gda_server_connection_free_error_list (GdaServerConnection *cnc); |
struct GdaServerProvider { BonoboObject object; GdaServerProviderPrivate *priv; }; |
GdaServerConnection* gda_server_connection_new (GdaServerProvider *provider); |
const gchar* gda_server_connection_get_string (GdaServerConnection *cnc); |
const gchar* gda_server_connection_get_username (GdaServerConnection *cnc); |
const gchar* gda_server_connection_get_password (GdaServerConnection *cnc); |
void gda_server_connection_notify_action (GdaServerConnection *cnc, GNOME_Database_ActionId action, GdaParameterList *params); |
void gda_server_connection_add_error (GdaServerConnection *cnc, GdaError *error); |
void gda_server_connection_add_error_string (GdaServerConnection *cnc, const gchar *msg, ...); |
Adds a new error to the given connection object. This is just a convenience function that simply creates a GdaError and then calls gda_server_connection_add_error.