aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-09-13 23:19:53 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-09-13 23:19:53 +0000
commite175b8eee449f722aa1b330776a8dafeb39b6c47 (patch)
treebf9e096ebfef373e138166bf42e43ddcc8aa9327 /phpBB
parent649ef1b9f3d7b2d6bdffa9be095921b06fc8b6dd (diff)
downloadforums-e175b8eee449f722aa1b330776a8dafeb39b6c47.tar
forums-e175b8eee449f722aa1b330776a8dafeb39b6c47.tar.gz
forums-e175b8eee449f722aa1b330776a8dafeb39b6c47.tar.bz2
forums-e175b8eee449f722aa1b330776a8dafeb39b6c47.tar.xz
forums-e175b8eee449f722aa1b330776a8dafeb39b6c47.zip
More work on Oracle DBAL code
git-svn-id: file:///svn/phpbb/trunk@1035 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/db/oracle.php4
1 files changed, 4 insertions, 0 deletions
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;