Searched defs:statement (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/lua/
H A Dlua_dbd.h48 apr_dbd_prepared_t *statement; member in struct:__anon209
H A Dlua_dbd.c147 db:query(statement): Executes the given database query and returns the
158 const char *statement; local
161 statement = lua_tostring(L, 3);
164 rc = apr_dbd_query(db->driver, db->handle, &x, statement);
197 const char *statement; local
205 statement = lua_tostring(L, 3);
209 escaped = apr_dbd_escape(db->driver, r->pool, statement,
303 db:select(statement): Queries the database for the given statement and
313 const char *statement; local
548 const char *statement, *at; local
[all...]
/httpd/modules/aaa/
H A Dmod_authn_dbd.c105 apr_dbd_prepared_t *statement; local
126 statement = apr_hash_get(dbd->prepared, conf->user, APR_HASH_KEY_STRING);
127 if (statement == NULL) {
129 "A prepared statement could not be found for "
134 statement, 0, user, NULL)) != 0) {
202 apr_dbd_prepared_t *statement; local
221 statement = apr_hash_get(dbd->prepared, conf->realm, APR_HASH_KEY_STRING);
222 if (statement == NULL) {
224 "A prepared statement could not be found for "
229 statement,
[all...]
/httpd/modules/session/
H A Dmod_session_dbd.c63 apr_dbd_prepared_t *statement; local
82 statement = apr_hash_get(dbd->prepared, query, APR_HASH_KEY_STRING);
83 if (!statement) {
85 "failed to find the prepared statement called '%s'", query);
90 *statementp = statement;
103 apr_dbd_prepared_t *statement = NULL; local
117 rv = dbd_init(r, conf->selectlabel, &dbd, &statement);
121 rv = apr_dbd_pvbselect(dbd->driver, r->pool, dbd->handle, &res, statement,
258 apr_dbd_prepared_t *statement; local
270 rv = dbd_init(r, conf->updatelabel, &dbd, &statement);
338 apr_dbd_prepared_t *statement; local
[all...]

Completed in 837 milliseconds