|  |  |  | Libgnomedb Reference Manual |  | 
|---|
| GnomeDbQfAllGnomeDbQfAll — Represents all the fields of an entity (through a GnomeDbTarget object) | 
            GnomeDbQfAll;
guint       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
| query : | a GnomeDbQuery in which the new object will be | 
| target : | 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.
| query : | a GnomeDbQuery in which the new object will be | 
| target_xml_id : | 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
| field : | a GnomeDbQfAll object | 
| Returns : | the GnomeDbTarget object | 
void user_function (GnomeDbQfAll *dbqfall, gpointer user_data);
| dbqfall : | the object which received the signal. | 
| user_data : | user data set when the signal handler was connected. | 
| << GnomeDbQfield | GnomeDbQfField >> |