Sources/Subs-Db-mysql.php 1 location
|
@@ 480-481 (lines=2) @@
|
| 477 |
|
else |
| 478 |
|
$ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT); |
| 479 |
|
|
| 480 |
|
if ($ret === false && empty($db_values['db_error_skip'])) |
| 481 |
|
$ret = smf_db_error($db_string, $connection); |
| 482 |
|
|
| 483 |
|
// Debugging. |
| 484 |
|
if (isset($db_show_debug) && $db_show_debug === true) |
Sources/Subs-Db-postgresql.php 1 location
|
@@ 485-486 (lines=2) @@
|
| 482 |
|
|
| 483 |
|
$db_last_result = @pg_query($connection, $db_string); |
| 484 |
|
|
| 485 |
|
if ($db_last_result === false && empty($db_values['db_error_skip'])) |
| 486 |
|
$db_last_result = smf_db_error($db_string, $connection); |
| 487 |
|
|
| 488 |
|
// Debugging. |
| 489 |
|
if (isset($db_show_debug) && $db_show_debug === true) |