| Libgnomedb Reference Manual | ||||
|---|---|---|---|---|
GnomeDbQfAllGnomeDbQfAll — Represents all the fields of an entity (through a GnomeDbTarget object) |
GnomeDbQfAll;
GType gnome_db_qf_all_get_type (void);
GObject* gnome_db_qf_all_new_with_target (GnomeDbQuery *query,
GnomeDbTarget *target);
GObject* gnome_db_qf_all_new_with_xml_id (GnomeDbQuery *query,
const gchar *target_xml_id);
GnomeDbTarget* gnome_db_qf_all_get_target (GnomeDbQfAll *field);
GnomeDbQfAll implements GnomeDbXmlStorage, GnomeDbRenderer, GnomeDbReferer and GnomeDbField.
GObject* gnome_db_qf_all_new_with_target (GnomeDbQuery *query, GnomeDbTarget *target);
Creates a new GnomeDbQfAll object which represents all the fields of the entity represented
by target. For example if target represents my_table, then the created object would
represent 'my_table.*' in SQL notation
|
a GnomeDbQuery in which the new object will be |
|
a GnomeDbTarget object |
Returns : |
the new object |
GObject* gnome_db_qf_all_new_with_xml_id (GnomeDbQuery *query, const gchar *target_xml_id);
Creates a new GnomeDbQfAll object which represents all the fields of the entity represented
by the target identified by target_xml_id.
|
a GnomeDbQuery in which the new object will be |
|
the XML Id of a GnomeDbTarget object |
Returns : |
the new object |
GnomeDbTarget* gnome_db_qf_all_get_target (GnomeDbQfAll *field);
Get the GnomeDbTarget object field 'belongs' to
|
a GnomeDbQfAll object |
Returns : |
the GnomeDbTarget object |
void user_function (GnomeDbQfAll *dbqfall, gpointer user_data) : Run First
|
the object which received the signal. |
|
user data set when the signal handler was connected. |