MCPcopy Create free account
hub / github.com/apache/httpd / dbd_init_sql

Function dbd_init_sql

modules/database/mod_dbd.c:267–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267static const char *dbd_init_sql(cmd_parms *cmd, void *dconf, const char *query)
268{
269 if (!query || *query == '\n') {
270 return "You should specify SQL statement";
271 }
272
273 ap_dbd_sql_init(cmd->server, query);
274
275 return NULL;
276}
277
278static const command_rec dbd_cmds[] = {
279 AP_INIT_TAKE1("DBDriver", dbd_param, (void*)cmd_name, RSRC_CONF,

Callers

nothing calls this directly

Calls 1

ap_dbd_sql_initFunction · 0.85

Tested by

no test coverage detected