![]() |
![]() |
![]() |
GNOME Data Access 3.0 manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Signals |
GdaQueryObjectGdaQueryObject — Parent class for any object participating in a GdaQuery query |
struct GdaQueryObject; struct GdaQueryObjectClass; GdaQueryObjectPrivate; void gda_query_object_set_int_id (GdaQueryObject *qobj
,guint id
); guint gda_query_object_get_int_id (GdaQueryObject *qobj
);
GObject +----GdaObject +----GdaQueryObject +----GdaQuery +----GdaQueryCondition +----GdaQueryField +----GdaQueryJoin +----GdaQueryTarget
struct GdaQueryObjectClass { GdaObjectClass parent_class; /* signals */ void (*numid_changed)(GdaQueryObject *object); /* pure virtual functions */ void (*set_int_id) (GdaQueryObject *object, guint id); };
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
"numid-changed"
signalvoid user_function (GdaQueryObject *gdaqueryobject,
gpointer user_data) : Run First
|
the object which received the signal. |
|
user data set when the signal handler was connected. |