GNOME Data Access manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
struct GdaServerProviderPrivate; const gchar* gda_server_provider_get_version (GdaServerProvider *provider); gboolean gda_server_provider_open_connection (GdaServerProvider *provider, GdaConnection *cnc, GdaQuarkList *params, const gchar *username, const gchar *password); gboolean gda_server_provider_close_connection (GdaServerProvider *provider, GdaConnection *cnc); const gchar* gda_server_provider_get_server_version (GdaServerProvider *provider, GdaConnection *cnc); const gchar* gda_server_provider_get_database (GdaServerProvider *provider, GdaConnection *cnc); gboolean gda_server_provider_change_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); gboolean gda_server_provider_create_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); gboolean gda_server_provider_drop_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); GList* gda_server_provider_execute_command (GdaServerProvider *provider, GdaConnection *cnc, GdaCommand *cmd, GdaParameterList *params); gboolean gda_server_provider_begin_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); gboolean gda_server_provider_commit_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); gboolean gda_server_provider_rollback_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); gboolean gda_server_provider_supports (GdaServerProvider *provider, GdaConnection *cnc, GdaConnectionFeature feature); GdaDataModel* gda_server_provider_get_schema (GdaServerProvider *provider, GdaConnection *cnc, GdaConnectionSchema schema, GdaParameterList *params); |
const gchar* gda_server_provider_get_version (GdaServerProvider *provider); |
Get the version of the given provider.
provider : | a GdaServerProvider object. |
Returns : | a string containing the version identification. |
gboolean gda_server_provider_open_connection (GdaServerProvider *provider, GdaConnection *cnc, GdaQuarkList *params, const gchar *username, const gchar *password); |
Tries to open a new connection on the given GdaServerProvider object.
provider : | a GdaServerProvider object. |
cnc : | a GdaConnection object. |
params : | |
username : | user name for logging in. |
password : | password for authentication. |
Returns : | a newly-allocated GdaServerConnection object, or NULL if it fails. |
gboolean gda_server_provider_close_connection (GdaServerProvider *provider, GdaConnection *cnc); |
const gchar* gda_server_provider_get_server_version (GdaServerProvider *provider, GdaConnection *cnc); |
const gchar* gda_server_provider_get_database (GdaServerProvider *provider, GdaConnection *cnc); |
Proxy the call to the get_database method on the GdaServerProvider class to the corresponding provider.
provider : | a GdaServerProvider object. |
cnc : | a GdaConnection object. |
Returns : | the name of the current database. |
gboolean gda_server_provider_change_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); |
Proxy the call to the change_database method on the " GdaServerProvider class to the corresponding provider.
provider : | a GdaServerProvider object. |
cnc : | a GdaConnection object. |
name : | database name. |
Returns : | TRUE if successful, FALSE otherwise. |
gboolean gda_server_provider_create_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); |
Proxy the call to the create_database method on the GdaServerProvider class to the corresponding provider.
provider : | a GdaServerProvider object. |
cnc : | a GdaConnection object. |
name : | database name. |
Returns : | TRUE if successful, FALSE otherwise. |
gboolean gda_server_provider_drop_database (GdaServerProvider *provider, GdaConnection *cnc, const gchar *name); |
Proxy the call to the drop_database method on the GdaServerProvider class to the corresponding provider.
provider : | a GdaServerProvider object. |
cnc : | a GdaConnection object. |
name : | database name. |
Returns : | TRUE if successful, FALSE otherwise. |
GList* gda_server_provider_execute_command (GdaServerProvider *provider, GdaConnection *cnc, GdaCommand *cmd, GdaParameterList *params); |
gboolean gda_server_provider_begin_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); |
gboolean gda_server_provider_commit_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); |
gboolean gda_server_provider_rollback_transaction (GdaServerProvider *provider, GdaConnection *cnc, GdaTransaction *xaction); |
gboolean gda_server_provider_supports (GdaServerProvider *provider, GdaConnection *cnc, GdaConnectionFeature feature); |
GdaDataModel* gda_server_provider_get_schema (GdaServerProvider *provider, GdaConnection *cnc, GdaConnectionSchema schema, GdaParameterList *params); |