Removed odbc_error stuff since it doesn't work anyway

git-svn-id: file:///svn/phpbb/trunk@1943 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-01-25 02:01:24 +00:00
parent 2ebc299d35
commit af082045ec

View file

@ -355,10 +355,10 @@ class sql_db
return true; return true;
} }
function sql_error($query_id = 0) function sql_error()
{ {
$error['code'] = odbc_error($this->db_connect_id); $error['code'] = "";//odbc_error($this->db_connect_id);
$error['message'] = odbc_errormsg($this->db_connect_id); $error['message'] = "Error";//odbc_errormsg($this->db_connect_id);
return $error; return $error;
} }