123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
-
-
- namespace Doctrine\DBAL\Driver\IBMDB2;
-
- class DB2Connection implements \Doctrine\DBAL\Driver\Connection
- {
- private $_conn = null;
-
- public function __construct(array $params, $username, $password, $driverOptions = array())
- {
- $isPersistant = (isset($params['persistent']) && $params['persistent'] == true);
-
- if ($isPersistant) {
- $this->_conn = db2_pconnect($params['dbname'], $username, $password, $driverOptions);
- } else {
- $this->_conn = db2_connect($params['dbname'], $username, $password, $driverOptions);
- }
- if (!$this->_conn) {
- throw new DB2Exception(db2_conn_errormsg());
- }
- }
-
- function prepare($sql)
- {
- $stmt = @db2_prepare($this->_conn, $sql);
- if (!$stmt) {
- throw new DB2Exception(db2_stmt_errormsg());
- }
- return new DB2Statement($stmt);
- }
-
- function query()
- {
- $args = func_get_args();
- $sql = $args[0];
- $stmt = $this->prepare($sql);
- $stmt->execute();
- return $stmt;
- }
-
- function quote($input, $type=\PDO::PARAM_STR)
- {
- $input = db2_escape_string($input);
- if ($type == \PDO::PARAM_INT ) {
- return $input;
- } else {
- return "'".$input."'";
- }
- }
-
- function exec($statement)
- {
- $stmt = $this->prepare($statement);
- $stmt->execute();
- return $stmt->rowCount();
- }
-
- function lastInsertId($name = null)
- {
- return db2_last_insert_id($this->_conn);
- }
-
- function beginTransaction()
- {
- db2_autocommit($this->_conn, DB2_AUTOCOMMIT_OFF);
- }
-
- function commit()
- {
- if (!db2_commit($this->_conn)) {
- throw new DB2Exception(db2_conn_errormsg($this->_conn));
- }
- db2_autocommit($this->_conn, DB2_AUTOCOMMIT_ON);
- }
-
- function rollBack()
- {
- if (!db2_rollback($this->_conn)) {
- throw new DB2Exception(db2_conn_errormsg($this->_conn));
- }
- db2_autocommit($this->_conn, DB2_AUTOCOMMIT_ON);
- }
-
- function errorCode()
- {
- return db2_conn_error($this->_conn);
- }
-
- function errorInfo()
- {
- return array(
- 0 => db2_conn_errormsg($this->_conn),
- 1 => $this->errorCode(),
- );
- }
- }
|