From e175b8eee449f722aa1b330776a8dafeb39b6c47 Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Thu, 13 Sep 2001 23:19:53 +0000 Subject: [PATCH] More work on Oracle DBAL code git-svn-id: file:///svn/phpbb/trunk@1035 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/oracle.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/phpBB/db/oracle.php b/phpBB/db/oracle.php index c58e594bac..560343bfe4 100644 --- a/phpBB/db/oracle.php +++ b/phpBB/db/oracle.php @@ -96,6 +96,10 @@ class sql_db { // Remove any pre-existing queries 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 != "") { $this->last_query = $query;