X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fdb%2Fconnect_db.inc;h=fd6870e947ed121d58ec558a13a00561b523c3f5;hb=8110c7a16ca343e6a48658db2ab95a573e22118f;hp=181651ffdeed9f9169deb37deea7da0384c78c22;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/includes/db/connect_db.inc b/includes/db/connect_db.inc index 181651ff..fd6870e9 100644 --- a/includes/db/connect_db.inc +++ b/includes/db/connect_db.inc @@ -9,7 +9,6 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -set_global_connection(); function set_global_connection() { @@ -27,8 +26,8 @@ $db_duplicate_error_code = 1062; function db_query($sql, $err_msg=null) { - global $db, $show_sql, $sql_trail, $select_trail; - + global $db, $show_sql, $sql_trail, $select_trail, $go_debug; + //echo "
$sql
"; if ($show_sql) { @@ -50,12 +49,13 @@ function db_query($sql, $err_msg=null) } } - if ($err_msg != null) - if (function_exists('xdebug_call_file')) - check_db_error('
At file '.xdebug_call_file().':'.xdebug_call_line().':
'.$err_msg, $sql); - else - check_db_error($err_msg, $sql); - + if ($err_msg != null || $go_debug) { + $exit = $err_msg != null; + if (function_exists('xdebug_call_file')) + check_db_error('
At file '.xdebug_call_file().':'.xdebug_call_line().':
'.$err_msg, $sql, $exit); + else + check_db_error($err_msg, $sql, $exit); + } return $result; }