Sources/Subs-Db-postgresql.php 1 location
|
@@ 454-455 (lines=2) @@
|
| 451 |
|
|
| 452 |
|
$db_last_result = @pg_query($connection, $db_string); |
| 453 |
|
|
| 454 |
|
if ($db_last_result === false && empty($db_values['db_error_skip'])) |
| 455 |
|
$db_last_result = smf_db_error($db_string, $connection); |
| 456 |
|
|
| 457 |
|
// Debugging. |
| 458 |
|
if (isset($db_show_debug) && $db_show_debug === true) |
Sources/Subs-Db-mysql.php 1 location
|
@@ 499-500 (lines=2) @@
|
| 496 |
|
else |
| 497 |
|
$ret = @mysqli_query($connection, $db_string, MYSQLI_USE_RESULT); |
| 498 |
|
|
| 499 |
|
if ($ret === false && empty($db_values['db_error_skip'])) |
| 500 |
|
$ret = smf_db_error($db_string, $connection); |
| 501 |
|
|
| 502 |
|
// Debugging. |
| 503 |
|
if (isset($db_show_debug) && $db_show_debug === true) |