Lines Matching refs:sqlquery
55 const buffer *sqlquery; member
106 const buffer *sqlquery = NULL; in mod_authn_dbi_dbconf_setup() local
114 sqlquery = &ds->value; in mod_authn_dbi_dbconf_setup()
139 if (sqlquery && !buffer_is_blank(sqlquery) && dbname && dbtype) { in mod_authn_dbi_dbconf_setup()
170 if (&ds->value != sqlquery && &ds->value != dbtype in mod_authn_dbi_dbconf_setup()
181 dbconf->sqlquery = sqlquery; in mod_authn_dbi_dbconf_setup()
426 mod_authn_dbi_query_build (buffer * const sqlquery, dbi_config * const dbconf, http_auth_info_t * c… in mod_authn_dbi_query_build() argument
429 buffer_clear(sqlquery); in mod_authn_dbi_query_build()
433 : dbconf->sqlquery; in mod_authn_dbi_query_build()
480 buffer_append_string_len(sqlquery, b, (size_t)(d - b)); in mod_authn_dbi_query_build()
481 buffer_append_string_len(sqlquery, esc, elen); in mod_authn_dbi_query_build()
486 buffer_append_string_len(sqlquery, b, (size_t)(d - b)); in mod_authn_dbi_query_build()
491 return sqlquery; in mod_authn_dbi_query_build()
503 buffer * const sqlquery = mod_authn_dbi_query_build(r->tmp_buf, dbconf, ai); in mod_authn_dbi_query() local
504 if (NULL == sqlquery) in mod_authn_dbi_query()
513 result = dbi_conn_query(dbconf->dbconn, sqlquery->ptr); in mod_authn_dbi_query()