From cf0a8c9727413671013b3b9a687e8a3db0393c30 Mon Sep 17 00:00:00 2001 From: beberlei Date: Fri, 2 Apr 2010 15:57:35 +0000 Subject: [PATCH] [2.0] DDC-491 - Fix OCI8 Driver being broken --- lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php | 2 +- lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php | 16 +++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php index 66a02e73d..987bf6c0c 100644 --- a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php +++ b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php @@ -53,7 +53,7 @@ class OCI8Connection implements \Doctrine\DBAL\Driver\Connection return $stmt; } - public function quote($input) + public function quote($input, $type=\PDO::PARAM_STR) { return is_numeric($input) ? $input : "'$input'"; } diff --git a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php index 0fc6775dc..78b21796d 100644 --- a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php +++ b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php @@ -132,14 +132,16 @@ class OCI8Statement implements \Doctrine\DBAL\Driver\Statement /** * {@inheritdoc} */ - public function execute($params = array()) + public function execute($params = null) { - $hasZeroIndex = isset($params[0]); - foreach ($params as $key => $val) { - if ($hasZeroIndex && is_numeric($key)) { - $this->bindValue($key + 1, $val); - } else { - $this->bindValue($key, $val); + if ($params) { + $hasZeroIndex = isset($params[0]); + foreach ($params as $key => $val) { + if ($hasZeroIndex && is_numeric($key)) { + $this->bindValue($key + 1, $val); + } else { + $this->bindValue($key, $val); + } } }