More work on Oracle DBAL code

git-svn-id: file:///svn/phpbb/trunk@1035 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson 2001-09-13 23:19:53 +00:00
parent 649ef1b9f3
commit e175b8eee4

View file

@ -96,6 +96,10 @@ class sql_db
{ {
// Remove any pre-existing queries // Remove any pre-existing queries
unset($this->query_result); unset($this->query_result);
// Put us in transaction mode because with Oracle as soon as you make a query you're in a transaction
$this->in_transaction = TRUE;
if($query != "") if($query != "")
{ {
$this->last_query = $query; $this->last_query = $query;