setConnectionParameters($connectionInfo); } elseif (is_resource($connectionInfo)) { $this->setResource($connectionInfo); } } /** * Set driver * * @param Pgsql $driver * @return self */ public function setDriver(Pgsql $driver) { $this->driver = $driver; return $this; } /** * @param int|null $type * @return self */ public function setType($type) { $invalidConectionType = ($type !== PGSQL_CONNECT_FORCE_NEW); // Compatibility with PHP < 5.6 if ($invalidConectionType && defined('PGSQL_CONNECT_ASYNC')) { $invalidConectionType = ($type !== PGSQL_CONNECT_ASYNC); } if ($invalidConectionType) { throw new Exception\InvalidArgumentException('Connection type is not valid. (See: http://php.net/manual/en/function.pg-connect.php)'); } $this->type = $type; return $this; } /** * {@inheritDoc} * * @return null|string */ public function getCurrentSchema() { if (!$this->isConnected()) { $this->connect(); } $result = pg_query($this->resource, 'SELECT CURRENT_SCHEMA AS "currentschema"'); if ($result == false) { return; } return pg_fetch_result($result, 0, 'currentschema'); } /** * {@inheritDoc} * * @throws Exception\RuntimeException on failure */ public function connect() { if (is_resource($this->resource)) { return $this; } $connection = $this->getConnectionString(); set_error_handler(function ($number, $string) { throw new Exception\RuntimeException( __METHOD__ . ': Unable to connect to database', null, new Exception\ErrorException($string, $number) ); }); $this->resource = pg_connect($connection); restore_error_handler(); if ($this->resource === false) { throw new Exception\RuntimeException(sprintf( '%s: Unable to connect to database', __METHOD__ )); } return $this; } /** * {@inheritDoc} */ public function isConnected() { return (is_resource($this->resource)); } /** * {@inheritDoc} */ public function disconnect() { pg_close($this->resource); return $this; } /** * {@inheritDoc} */ public function beginTransaction() { if ($this->inTransaction()) { throw new Exception\RuntimeException('Nested transactions are not supported'); } if (!$this->isConnected()) { $this->connect(); } pg_query($this->resource, 'BEGIN'); $this->inTransaction = true; return $this; } /** * {@inheritDoc} */ public function commit() { if (!$this->isConnected()) { $this->connect(); } if (!$this->inTransaction()) { return; // We ignore attempts to commit non-existing transaction } pg_query($this->resource, 'COMMIT'); $this->inTransaction = false; return $this; } /** * {@inheritDoc} */ public function rollback() { if (!$this->isConnected()) { throw new Exception\RuntimeException('Must be connected before you can rollback'); } if (!$this->inTransaction()) { throw new Exception\RuntimeException('Must call beginTransaction() before you can rollback'); } pg_query($this->resource, 'ROLLBACK'); $this->inTransaction = false; return $this; } /** * {@inheritDoc} * * @throws Exception\InvalidQueryException * @return resource|\Zend\Db\ResultSet\ResultSetInterface */ public function execute($sql) { if (!$this->isConnected()) { $this->connect(); } if ($this->profiler) { $this->profiler->profilerStart($sql); } $resultResource = pg_query($this->resource, $sql); if ($this->profiler) { $this->profiler->profilerFinish($sql); } // if the returnValue is something other than a pg result resource, bypass wrapping it if ($resultResource === false) { throw new Exception\InvalidQueryException(pg_errormessage()); } $resultPrototype = $this->driver->createResult(($resultResource === true) ? $this->resource : $resultResource); return $resultPrototype; } /** * {@inheritDoc} * * @return string */ public function getLastGeneratedValue($name = null) { if ($name === null) { return; } $result = pg_query($this->resource, 'SELECT CURRVAL(\'' . str_replace('\'', '\\\'', $name) . '\') as "currval"'); return pg_fetch_result($result, 0, 'currval'); } /** * Get Connection String * * @return string */ private function getConnectionString() { // localize $p = $this->connectionParameters; // given a list of key names, test for existence in $p $findParameterValue = function (array $names) use ($p) { foreach ($names as $name) { if (isset($p[$name])) { return $p[$name]; } } return; }; $connectionParameters = array( 'host' => $findParameterValue(array('hostname', 'host')), 'user' => $findParameterValue(array('username', 'user')), 'password' => $findParameterValue(array('password', 'passwd', 'pw')), 'dbname' => $findParameterValue(array('database', 'dbname', 'db', 'schema')), 'port' => isset($p['port']) ? (int) $p['port'] : null, 'socket' => isset($p['socket']) ? $p['socket'] : null, ); return urldecode(http_build_query(array_filter($connectionParameters), null, ' ')); } }