|
From: Paul S. O. <ps...@us...> - 2002-01-25 02:01:26
|
Update of /cvsroot/phpbb/phpBB2/db
In directory usw-pr-cvs1:/tmp/cvs-serv9282/db
Modified Files:
msaccess.php
Log Message:
Removed odbc_error stuff since it doesn't work anyway
Index: msaccess.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/msaccess.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** msaccess.php 2002/01/25 01:59:34 1.4
--- msaccess.php 2002/01/25 02:01:24 1.5
***************
*** 356,363 ****
}
! function sql_error($query_id = 0)
{
! $error['code'] = odbc_error($this->db_connect_id);
! $error['message'] = odbc_errormsg($this->db_connect_id);
return $error;
--- 356,363 ----
}
! function sql_error()
{
! $error['code'] = "";//odbc_error($this->db_connect_id);
! $error['message'] = "Error";//odbc_errormsg($this->db_connect_id);
return $error;
|