function _db_query in Drupal 6
Same name in this branch
- 6 includes/database.mysqli.inc \_db_query()
- 6 includes/database.mysql.inc \_db_query()
- 6 includes/database.pgsql.inc \_db_query()
Same name and namespace in other branches
- 4 includes/database.mysqli.inc \_db_query()
- 4 includes/database.mysql.inc \_db_query()
- 4 includes/database.pgsql.inc \_db_query()
- 5 includes/database.mysqli.inc \_db_query()
- 5 includes/database.mysql.inc \_db_query()
- 5 includes/database.pgsql.inc \_db_query()
Helper function for db_query().
Related topics
8 calls to _db_query()
- db_query in includes/
database.mysql-common.inc - Runs a basic query in the active database.
- db_query in includes/
database.pgsql.inc - Runs a basic query in the active database.
- db_query_range in includes/
database.mysqli.inc - Runs a limited-range query in the active database.
- db_query_range in includes/
database.mysql.inc - Runs a limited-range query in the active database.
- db_query_range in includes/
database.pgsql.inc - Runs a limited-range query in the active database.
File
- includes/
database.mysql.inc, line 98 - Database interface code for MySQL database servers.
Code
function _db_query($query, $debug = 0) {
global $active_db, $queries, $user;
if (variable_get('dev_query', 0)) {
list($usec, $sec) = explode(' ', microtime());
$timer = (double) $usec + (double) $sec;
// If devel.module query logging is enabled, prepend a comment with the username and calling function
// to the SQL string. This is useful when running mysql's SHOW PROCESSLIST to learn what exact
// code is issueing the slow query.
$bt = debug_backtrace();
// t() may not be available yet so we don't wrap 'Anonymous'.
$name = $user->uid ? $user->name : variable_get('anonymous', 'Anonymous');
// str_replace() to prevent SQL injection via username or anonymous name.
$name = str_replace(array(
'*',
'/',
), '', $name);
$query = '/* ' . $name . ' : ' . $bt[2]['function'] . ' */ ' . $query;
}
$result = mysql_query($query, $active_db);
if (variable_get('dev_query', 0)) {
$query = $bt[2]['function'] . "\n" . $query;
list($usec, $sec) = explode(' ', microtime());
$stop = (double) $usec + (double) $sec;
$diff = $stop - $timer;
$queries[] = array(
$query,
$diff,
);
}
if ($debug) {
print '<p>query: ' . $query . '<br />error:' . mysql_error($active_db) . '</p>';
}
if (!mysql_errno($active_db)) {
return $result;
}
else {
// Indicate to drupal_error_handler that this is a database error.
${DB_ERROR} = TRUE;
trigger_error(check_plain(mysql_error($active_db) . "\nquery: " . $query), E_USER_WARNING);
return FALSE;
}
}