Sources/Subs-Db-mysql.php 1 location
|
@@ 510-511 (lines=2) @@
|
507 |
|
else |
508 |
|
$ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT); |
509 |
|
|
510 |
|
if ($ret === false && empty($db_values['db_error_skip'])) |
511 |
|
$ret = smf_db_error($db_string, $connection); |
512 |
|
|
513 |
|
// Debugging. |
514 |
|
if (isset($db_show_debug) && $db_show_debug === true) |
Sources/Subs-Db-postgresql.php 1 location
|
@@ 491-492 (lines=2) @@
|
488 |
|
|
489 |
|
$db_last_result = @pg_query($connection, $db_string); |
490 |
|
|
491 |
|
if ($db_last_result === false && empty($db_values['db_error_skip'])) |
492 |
|
$db_last_result = smf_db_error($db_string, $connection); |
493 |
|
|
494 |
|
// Debugging. |
495 |
|
if (isset($db_show_debug) && $db_show_debug === true) |