Fix raiseError call in the MDB2 sqlite3 driver
This commit is contained in:
parent
c7a17efc01
commit
7c1a4d2f57
|
@ -895,7 +895,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common
|
|||
}
|
||||
$statement =$this->connection->prepare($query);
|
||||
if (!$statement) {
|
||||
return $this->db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
|
||||
return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
|
||||
'unable to prepare statement: '.$query);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue