-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2.0][DDC-120] First version of OCI8 driver.
- Loading branch information
romanb
committed
Nov 8, 2009
1 parent
8e3f6ee
commit 57a97eb
Showing
3 changed files
with
427 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?php | ||
/* | ||
* $Id$ | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Driver\OCI8; | ||
|
||
use Doctrine\DBAL\Platforms; | ||
|
||
/** | ||
* A Doctrine DBAL driver for the Oracle OCI8 PHP extensions. | ||
* | ||
* @author Roman Borschel <roman@code-factory.org> | ||
* @since 2.0 | ||
*/ | ||
class Driver implements \Doctrine\DBAL\Driver | ||
{ | ||
public function connect(array $params, $username = null, $password = null, array $driverOptions = array()) | ||
{ | ||
return new OCI8Connection( | ||
$username, | ||
$password, | ||
$this->_constructDsn($params) | ||
); | ||
} | ||
|
||
/** | ||
* Constructs the Oracle DSN. | ||
* | ||
* @return string The DSN. | ||
*/ | ||
private function _constructDsn(array $params) | ||
{ | ||
$dsn = ''; | ||
if (isset($params['host'])) { | ||
$dsn .= '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)' . | ||
'(HOST=' . $params['host'] . ')'; | ||
|
||
if (isset($params['port'])) { | ||
$dsn .= '(PORT=' . $params['port'] . ')'; | ||
} else { | ||
$dsn .= '(PORT=1521)'; | ||
} | ||
|
||
$dsn .= '))(CONNECT_DATA=(SID=' . $params['dbname'] . ')))'; | ||
} else { | ||
$dsn .= $params['dbname']; | ||
} | ||
|
||
if (isset($params['charset'])) { | ||
$dsn .= ';charset=' . $params['charset']; | ||
} | ||
|
||
return $dsn; | ||
} | ||
|
||
public function getDatabasePlatform() | ||
{ | ||
return new \Doctrine\DBAL\Platforms\OraclePlatform(); | ||
} | ||
|
||
public function getSchemaManager(\Doctrine\DBAL\Connection $conn) | ||
{ | ||
return new \Doctrine\DBAL\Schema\OracleSchemaManager($conn); | ||
} | ||
|
||
public function getName() | ||
{ | ||
return 'oci8'; | ||
} | ||
|
||
public function getDatabase(\Doctrine\DBAL\Connection $conn) | ||
{ | ||
$params = $conn->getParams(); | ||
return $params['user']; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<?php | ||
/* | ||
* $Id$ | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Driver\OCI8; | ||
|
||
/** | ||
* OCI8 implementation of the Connection interface. | ||
* | ||
* @since 2.0 | ||
*/ | ||
class OCI8Connection implements \Doctrine\DBAL\Driver\Connection | ||
{ | ||
private $_dbh; | ||
|
||
public function __construct($username, $password, $db) | ||
{ | ||
$this->_dbh = oci_connect($username, $password, $db); | ||
} | ||
|
||
public function prepare($prepareString) | ||
{ | ||
return new OCI8Statement($this->_dbh, $prepareString); | ||
} | ||
|
||
public function query() | ||
{ | ||
$args = func_get_args(); | ||
$sql = $args[0]; | ||
//$fetchMode = $args[1]; | ||
$stmt = $this->prepare($sql); | ||
$stmt->execute(); | ||
return $stmt; | ||
} | ||
|
||
public function quote($input) | ||
{ | ||
return is_numeric($input) ? $input : "'$input'"; | ||
} | ||
|
||
public function exec($statement) | ||
{ | ||
$stmt = $this->prepare($statement); | ||
$stmt->execute(); | ||
return $stmt->rowCount(); | ||
} | ||
|
||
public function lastInsertId($name = null) | ||
{ | ||
//TODO: throw exception or support sequences? | ||
} | ||
|
||
public function beginTransaction() | ||
{ | ||
return true; | ||
} | ||
|
||
public function commit() | ||
{ | ||
return oci_commit($this->_dbh); | ||
} | ||
|
||
public function rollBack() | ||
{ | ||
return oci_rollback($this->_dbh); | ||
} | ||
|
||
public function errorCode() | ||
{ | ||
$error = oci_error($this->_dbh); | ||
if ($error !== false) { | ||
$error = $error['code']; | ||
} | ||
return $error; | ||
} | ||
|
||
public function errorInfo() | ||
{ | ||
return oci_error($this->_dbh); | ||
} | ||
|
||
} |
Oops, something went wrong.