Function
CamelDBSelectCB
unstable since: 3.58
Declaration
gboolean
(* CamelDBSelectCB) (
gpointer user_data,
gint ncol,
gchar** colvalues,
gchar** colnames
)
Description [src]
A callback called for the SELECT statements. The items at the same index of colvalues
and colnames correspond to each other.
Available since: 3.58
Parameters
user_data-
Type:
gpointerA callback user data.
The argument can be NULL.The data is owned by the caller of the function. ncol-
Type:
gintHow many columns is provided.
colvalues-
Type: An array of
gchar*Array of column values, as UTF-8 strings.
The length of the array is specified in the ncolargument.The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string. colnames-
Type: An array of
gchar*Array of column names.
The length of the array is specified in the ncolargument.The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string.