1
0
mirror of https://github.com/dg/dibi.git synced 2025-02-24 19:02:36 +01:00
php-dibi/dibi/drivers/postgre.php

378 lines
9.3 KiB
PHP
Raw Normal View History

2006-09-13 11:49:32 +00:00
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
*
* Copyright (c) 2005, 2007 David Grudl aka -dgx- (http://www.dgx.cz)
*
* This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt.
*
* For more information please see http://dibiphp.com/
2006-09-13 11:49:32 +00:00
*
* @copyright Copyright (c) 2005, 2007 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com/
* @package dibi
2006-09-13 11:49:32 +00:00
*/
/**
* The dibi driver for PostgreSQL database
*
* Connection options:
* - 'host','hostaddr','port','dbname','user','password','connect_timeout','options','sslmode','service' - see PostgreSQL API
* - 'string' - or use connection string
* - 'persistent' - try to find a persistent link?
* - 'charset' - character encoding to set
2007-11-14 23:05:57 +00:00
* - 'lazy' - if TRUE, connection will be established only when required
2006-09-13 11:49:32 +00:00
*
* @author David Grudl
* @copyright Copyright (c) 2005, 2007 David Grudl
* @package dibi
* @version $Revision$ $Date$
2006-09-13 11:49:32 +00:00
*/
class DibiPostgreDriver extends NObject implements DibiDriverInterface
{
/**
* Connection resource
* @var resource
*/
private $connection;
2006-09-13 11:49:32 +00:00
/**
* Resultset resource
* @var resource
*/
private $resultset;
/**
* Escape method
* @var bool
*/
private $escMethod = FALSE;
/**
* @throws DibiException
*/
public function __construct()
{
if (!extension_loaded('pgsql')) {
throw new DibiDriverException("PHP extension 'pgsql' is not loaded");
}
}
/**
* Connects to a database
*
* @return void
* @throws DibiException
*/
public function connect(array &$config)
{
if (isset($config['string'])) {
$string = $config['string'];
} else {
$string = '';
foreach (array('host','hostaddr','port','dbname','user','password','connect_timeout','options','sslmode','service') as $key) {
if (isset($config[$key])) $string .= $key . '=' . $config[$key] . ' ';
}
}
DibiDriverException::catchError();
if (isset($config['persistent'])) {
$this->connection = @pg_connect($string, PGSQL_CONNECT_FORCE_NEW);
} else {
$this->connection = @pg_pconnect($string, PGSQL_CONNECT_FORCE_NEW);
}
DibiDriverException::restore();
if (!is_resource($this->connection)) {
throw new DibiDriverException('Connecting error');
}
2006-09-13 11:49:32 +00:00
if (isset($config['charset'])) {
DibiDriverException::catchError();
@pg_set_client_encoding($this->connection, $config['charset']);
DibiDriverException::restore();
2006-09-13 11:49:32 +00:00
}
$this->escMethod = version_compare(PHP_VERSION , '5.2.0', '>=');
2006-09-13 11:49:32 +00:00
}
/**
2007-11-10 07:37:44 +00:00
* Disconnects from a database
*
2007-11-10 07:37:44 +00:00
* @return void
*/
public function disconnect()
2006-09-13 11:49:32 +00:00
{
pg_close($this->connection);
}
2006-09-13 11:49:32 +00:00
/**
* Executes the SQL query
*
* @param string SQL statement.
2007-11-10 07:37:44 +00:00
* @param bool update affected rows?
* @return bool have resultset?
* @throws DibiDriverException
*/
public function query($sql)
{
$this->resultset = @pg_query($this->connection, $sql);
2006-09-13 11:49:32 +00:00
if ($this->resultset === FALSE) {
2007-11-23 23:50:57 +00:00
throw new DibiDriverException(pg_last_error($this->connection), 0, $sql);
2007-08-28 21:41:15 +00:00
}
return is_resource($this->resultset);
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Gets the number of affected rows by the last INSERT, UPDATE or DELETE query
*
* @return int|FALSE number of rows or FALSE on error
*/
2006-09-13 11:49:32 +00:00
public function affectedRows()
{
return pg_affected_rows($this->resultset);
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query
*
* @return int|FALSE int on success or FALSE on failure
*/
public function insertId($sequence)
2006-09-13 11:49:32 +00:00
{
if ($sequence === NULL) {
// PostgreSQL 8.1 is needed
$has = $this->query("SELECT LASTVAL()");
} else {
$has = $this->query("SELECT CURRVAL('$sequence')");
}
if (!$has) return FALSE;
$row = $this->fetch(FALSE);
$this->free();
return is_array($row) ? $row[0] : FALSE;
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Begins a transaction (if supported).
* @return void
* @throws DibiDriverException
*/
2006-09-13 11:49:32 +00:00
public function begin()
{
$this->query('START TRANSACTION');
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Commits statements in a transaction.
* @return void
* @throws DibiDriverException
*/
2006-09-13 11:49:32 +00:00
public function commit()
{
$this->query('COMMIT');
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Rollback changes in a transaction.
* @return void
* @throws DibiDriverException
*/
2006-09-13 11:49:32 +00:00
public function rollback()
{
$this->query('ROLLBACK');
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Format to SQL command
*
* @param string value
* @param string type (dibi::FIELD_TEXT, dibi::FIELD_BOOL, dibi::FIELD_DATE, dibi::FIELD_DATETIME, dibi::IDENTIFIER)
* @return string formatted value
* @throws InvalidArgumentException
*/
public function format($value, $type)
2006-09-13 11:49:32 +00:00
{
if ($type === dibi::FIELD_TEXT) {
if ($this->escMethod) return "'" . pg_escape_string($this->connection, $value) . "'";
return "'" . pg_escape_string($value) . "'";
}
if ($type === dibi::IDENTIFIER) {
$a = strrpos($value, '.');
if ($a === FALSE) return '"' . str_replace('"', '""', $value) . '"';
// table.col delimite as table."col"
return substr($value, 0, $a) . '."' . str_replace('"', '""', substr($value, $a + 1)) . '"';
}
if ($type === dibi::FIELD_BOOL) return $value ? 'TRUE' : 'FALSE';
if ($type === dibi::FIELD_DATE) return date("'Y-m-d'", $value);
if ($type === dibi::FIELD_DATETIME) return date("'Y-m-d H:i:s'", $value);
throw new InvalidArgumentException('Unsupported formatting type');
2006-09-13 11:49:32 +00:00
}
2006-09-23 07:55:11 +00:00
/**
* Injects LIMIT/OFFSET to the SQL query
*
* @param string &$sql The SQL query that will be modified.
* @param int $limit
* @param int $offset
* @return void
2006-09-23 07:55:11 +00:00
*/
public function applyLimit(&$sql, $limit, $offset)
2006-09-23 07:55:11 +00:00
{
if ($limit >= 0)
$sql .= ' LIMIT ' . (int) $limit;
if ($offset > 0)
$sql .= ' OFFSET ' . (int) $offset;
}
2006-09-13 11:49:32 +00:00
/**
* Returns the number of rows in a result set
*
* @return int
*/
public function rowCount()
2006-09-13 11:49:32 +00:00
{
return pg_num_rows($this->resultset);
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Fetches the row at current position and moves the internal cursor to the next position
* internal usage only
*
* @param bool TRUE for associative array, FALSE for numeric
* @return array array on success, nonarray if no next record
*/
public function fetch($type)
2006-09-13 11:49:32 +00:00
{
return pg_fetch_array($this->resultset, NULL, $type ? PGSQL_ASSOC : PGSQL_NUM);
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Moves cursor position without fetching row
*
* @param int the 0-based cursor pos to seek to
* @return boolean TRUE on success, FALSE if unable to seek to specified record
* @throws DibiException
*/
public function seek($row)
2006-09-13 11:49:32 +00:00
{
return pg_result_seek($this->resultset, $row);
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Frees the resources allocated for this result set
*
* @return void
*/
public function free()
2006-09-13 11:49:32 +00:00
{
pg_free_result($this->resultset);
$this->resultset = NULL;
2006-09-13 11:49:32 +00:00
}
2007-08-23 00:57:28 +00:00
/**
* Returns metadata for all columns in a result set
*
* @return array
*/
public function getColumnsMeta()
2006-09-13 11:49:32 +00:00
{
$hasTable = version_compare(PHP_VERSION , '5.2.0', '>=');
$count = pg_num_fields($this->resultset);
$meta = array();
for ($i = 0; $i < $count; $i++) {
// items 'name' and 'table' are required
$meta[] = array(
'name' => pg_field_name($this->resultset, $i),
'table' => $hasTable ? pg_field_table($this->resultset, $i) : NULL,
'type' => pg_field_type($this->resultset, $i),
'size' => pg_field_size($this->resultset, $i),
'prtlen' => pg_field_prtlen($this->resultset, $i),
);
2006-09-13 11:49:32 +00:00
}
return $meta;
2006-09-13 11:49:32 +00:00
}
/**
* Returns the connection resource
*
* @return mixed
*/
public function getResource()
{
return $this->connection;
}
/**
* Returns the resultset resource
*
* @return mixed
*/
public function getResultResource()
{
return $this->resultset;
}
/**
* Gets a information of the current database.
*
* @return DibiReflection
*/
function getDibiReflection()
{}
}