Top | ![]() |
![]() |
![]() |
![]() |
GdaQueryObjectGdaQueryObject — Parent class for any object participating in a GdaQuery query |
GObject ╰── GdaObject ╰── GdaQueryObject ├── GdaQuery ├── GdaQueryCondition ├── GdaQueryField ├── GdaQueryJoin ╰── GdaQueryTarget
void gda_query_object_set_int_id (GdaQueryObject *qobj
,guint id
);
Sets the integer ID of qobj
; this also triggers a change in the string ID
(which can be obtained using gda_object_get_id()
) of the object.
guint
gda_query_object_get_int_id (GdaQueryObject *qobj
);
Get the integer ID of qobj
Return: the integer ID
struct GdaQueryObjectClass { GdaObjectClass parent_class; /* signals */ void (*numid_changed)(GdaQueryObject *object); /* pure virtual functions */ void (*set_int_id) (GdaQueryObject *object, guint id); };
“numid-changed”
signalvoid user_function (GdaQueryObject *gdaqueryobject, gpointer user_data)
gdaqueryobject |
the object which received the signal. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First