diff options
author | David M <davidmj@users.sourceforge.net> | 2006-06-03 20:34:40 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-06-03 20:34:40 +0000 |
commit | 9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9 (patch) | |
tree | b2dc2f92b38c44cc315e36ba40b3fc5a90114313 /phpBB/includes/db | |
parent | d19897974714893985ec4855cd7d025889d8a1c7 (diff) | |
download | forums-9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9.tar forums-9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9.tar.gz forums-9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9.tar.bz2 forums-9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9.tar.xz forums-9aa9cb4bb6d9ad21db25bf24e70ed35b92c0f1a9.zip |
DB stuff, nothing cool at all unless you use Oracle.
git-svn-id: file:///svn/phpbb/trunk@6006 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r-- | phpBB/includes/db/oracle.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php index d9a7298c04..bef33b4fd2 100644 --- a/phpBB/includes/db/oracle.php +++ b/phpBB/includes/db/oracle.php @@ -314,12 +314,12 @@ class dbal_oracle extends dbal $stmt = @ociparse($this->db_connect_id, $query); @ociexecute($stmt, OCI_DEFAULT ); - $temp_result = @ocifetchinto($stmt, $temp_result, OCI_ASSOC + OCI_RETURN_NULLS); + $temp_result = @ocifetchinto($stmt, $temp_array, OCI_ASSOC + OCI_RETURN_NULLS); @ocifreestatement($stmt); if ($temp_result) { - return $temp_result['CURRVAL']; + return $temp_array['CURRVAL']; } else { |