libgdamm
4.99.7
|
Configuration — Access/Management of libgda configuration. More...
Public Member Functions | |
virtual | ~Config () |
GdaConfig* | gobj () |
Provides access to the underlying C GObject. More... | |
const GdaConfig* | gobj () const |
Provides access to the underlying C GObject. More... | |
GdaConfig* | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
Glib::SignalProxy1< void, GdaDsnInfo* > | signal_dsn_added () |
Glib::SignalProxy1< void, GdaDsnInfo* > | signal_dsn_changed () |
Glib::SignalProxy1< void, GdaDsnInfo* > | signal_dsn_removed () |
Glib::SignalProxy1< void, GdaDsnInfo* > | signal_dsn_to_be_removed () |
Glib::PropertyProxy < Glib::ustring > | property_system_filename () |
File to use for system-wide DSN list. More... | |
Glib::PropertyProxy_ReadOnly < Glib::ustring > | property_system_filename () const |
File to use for system-wide DSN list. More... | |
Glib::PropertyProxy < Glib::ustring > | property_user_filename () |
File to use for per-user DSN list. More... | |
Glib::PropertyProxy_ReadOnly < Glib::ustring > | property_user_filename () const |
File to use for per-user DSN list. More... | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. More... | |
static Glib::RefPtr< Config > | get () |
Get a pointer to the global GdaConfig object. More... | |
static GdaDsnInfo* | get_dsn_info (const Glib::ustring& dsn_name) |
Get information about the DSN named dsn_name. More... | |
static bool | dsn_needs_authentication (const Glib::ustring& dsn_name) |
Tells if the data source identified as dsn_name needs any authentication. More... | |
static Glib::RefPtr< DataModel > | list_dsn () |
Get a Gda::DataModel representing all the configured DSN, and keeping itself up to date with the changes in the declared DSN. More... | |
static Glib::RefPtr < ServerProvider > | get_provider (const Glib::ustring& provider_name) |
Get a pointer to the session-wide Gda::ServerProvider for the provider named provider_name. More... | |
static Glib::RefPtr< DataModel > | list_providers () |
Get a Gda::DataModel representing all the installed database providers. More... | |
static int | get_nb_dsn () |
Get the number of defined DSN. More... | |
static bool | can_modify_system_config () |
Tells if the global (system) configuration can be modified (considering system permissions and settings) More... | |
Protected Member Functions | |
Config () | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gnome::Gda::Config > | wrap (GdaConfig* object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
Configuration — Access/Management of libgda configuration.
|
virtual |
|
protected |
|
static |
Tells if the global (system) configuration can be modified (considering system permissions and settings)
true
if system-wide configuration can be modified.
|
static |
Tells if the data source identified as dsn_name needs any authentication.
If a <username> and optionally a <password> are specified, they are ignored.
dsn_name | The name of a DSN, in the "[<username>[:<password>]@]<DSN>" format. |
true
if an authentication is needed.
|
static |
Get a pointer to the global GdaConfig object.
0
pointer to a Gda::Config.
|
static |
Get information about the DSN named dsn_name.
dsn_name's format is "[<username>[:<password>]@]<DSN>" (if <username> and optionally <password> are provided, they are ignored). Also see the gda_dsn_split() utility function.
dsn_name | The name of the DSN to look for. |
0
if not found.
|
static |
Get the number of defined DSN.
|
static |
Get a pointer to the session-wide Gda::ServerProvider for the provider named provider_name.
The caller must not call Glib::object_unref() on the returned object.
This method may fail with a Gda::CONFIG_ERROR domain error (see the Gda::ConfigError error codes).
provider_name | A database provider. |
0
if an error occurred.
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GdaConfig* Gnome::Gda::Config::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
|
static |
Get a Gda::DataModel representing all the configured DSN, and keeping itself up to date with the changes in the declared DSN.
The returned data model is composed of the following columns:
|
static |
Get a Gda::DataModel representing all the installed database providers.
The returned data model is composed of the following columns:
Glib::PropertyProxy< Glib::ustring > Gnome::Gda::Config::property_system_filename | ( | ) |
File to use for system-wide DSN list.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly< Glib::ustring > Gnome::Gda::Config::property_system_filename | ( | ) | const |
File to use for system-wide DSN list.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy< Glib::ustring > Gnome::Gda::Config::property_user_filename | ( | ) |
File to use for per-user DSN list.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly< Glib::ustring > Gnome::Gda::Config::property_user_filename | ( | ) | const |
File to use for per-user DSN list.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::SignalProxy1< void,GdaDsnInfo* > Gnome::Gda::Config::signal_dsn_added | ( | ) |
void on_my_dsn_added(GdaDsnInfo* info)
Glib::SignalProxy1< void,GdaDsnInfo* > Gnome::Gda::Config::signal_dsn_changed | ( | ) |
void on_my_dsn_changed(GdaDsnInfo* info)
Glib::SignalProxy1< void,GdaDsnInfo* > Gnome::Gda::Config::signal_dsn_removed | ( | ) |
void on_my_dsn_removed(GdaDsnInfo* info)
Glib::SignalProxy1< void,GdaDsnInfo* > Gnome::Gda::Config::signal_dsn_to_be_removed | ( | ) |
void on_my_dsn_to_be_removed(GdaDsnInfo* info)
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |