. */ 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); if (!$this->_dbh) { throw new OCI8Exception($this->errorInfo()); } } 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, $type=\PDO::PARAM_STR) { 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() { if (!oci_commit($this->_dbh)) { throw OCI8Exception::fromErrorInfo($this->errorInfo()); } return true; } public function rollBack() { if (!oci_rollback($this->_dbh)) { throw OCI8Exception::fromErrorInfo($this->errorInfo()); } return true; } public function errorCode() { $error = oci_error($this->_dbh); if ($error !== false) { $error = $error['code']; } return $error; } public function errorInfo() { return oci_error($this->_dbh); } }