function gsk_dbh_query_f

void gsk_dbh_query_f
                (GskDbh                *        dbh,
                 GskDbhQueryCallback            callback,
                 gpointer                       callback_data,
                 const gchar           *        query_format,
                 ...                            ...)
Format string version of gsk_dbh_query ().

Parameters:

dbh

The database handle to execute the query on. It is automatically referenced until the supplied query callback returns.

callback

Callback to execute on completion. Note the callback is always executed, even if the query fails.

callback_data

Data passed unmodified to callback.

query_format

Format string to build the query string from.

...

Variable argument list. Note that the query string is constructed from the format string and varargs at the time gsk_dbh_query_f () is called, not at the time the query is executed.