1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
<?php
//
// +----------------------------------------------------------------------+
// | PHP version 4.0 |
// +----------------------------------------------------------------------+
// | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.02 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Rui Hirokawa <louis@cityfujisawa.ne.jp> |
// | |
// +----------------------------------------------------------------------+
//
// Database independent query interface definition for PHP's PostgreSQL
// extension.
//
// [SSB] Problems in this code:
//
// 1. $this->row is used as a row counter
// for the fetchRow() implementation. There are two problems with this:
// First of all, $this->row is not reset when the result is freed. Also,
// If the user creates two DB_result objects on the same DB connection,
// it will break completely because both result sets will be using the
// same row counter. Solution: change $this->row into an array indexed
// by resource id.
// --> $this->row is changed to an indexed array. (R.Hirokawa)
//
// 2. The pgsql extension currently does not have error codes. This
// should be fixed so DB_pgsql can do portable error codes.
// --> The error codes are not supported in the current pgsql API (libpq).
//
// 3. The transaction is supported by PostgreSQL,
// but the current implementation is not useful to use the transaction.
//
// XXX legend:
//
// XXX ERRORMSG: The error message from the pgsql function should
// be registered here.
//
require_once 'DB/common.php';
class DB_pgsql extends DB_common {
// {{{ properties
var $connection;
var $phptype, $dbsyntax;
var $prepare_tokens = array();
var $prepare_types = array();
var $numrows;
var $row;
// }}}
// {{{ constructor
function DB_pgsql() {
$this->phptype = 'pgsql';
$this->dbsyntax = 'pgsql';
$this->features = array(
'prepare' => false,
'pconnect' => true,
'transactions' => true
);
$this->errorcode_map = array();
$this->numrows = array();
$this->row = array();
}
// }}}
// {{{ connect()
/**
* Connect to a database and log in as the specified user.
*
* @param $dsn the data source name (see DB::parseDSN for syntax)
* @param $persistent (optional) whether the connection should
* be persistent
*
* @return int DB_OK on success, a DB error code on failure
*/
function connect(&$dsn, $persistent = false) {
if (is_array($dsn)) {
$dsninfo = &$dsn;
} else {
$dsninfo = DB::parseDSN($dsn);
}
if (!$dsninfo || !$dsninfo['phptype']) {
return $this->raiseError(); // XXX ERRORMSG
}
$dbhost = $dsninfo['hostspec'] ? $dsninfo['hostspec'] : 'localhost';
$protocol = $dsninfo['protocol'] ? $dsninfo['protocol'] : 'tcp';
$user = $dsninfo['username'];
$pw = $dsninfo['password'];
$dbname = $dsninfo['database'];
$options = $dsninfo['options'];
$tty = $dsninfo['tty'];
$port = $dsninfo['port'] ? $dsninfo['port'] : '5432';
$connect_function = $persistent ? 'pg_pconnect' : 'pg_connect';
if (($protocol == 'unix') && $dbname) {
$connect_params = "dbname=$dbname";
if ($user) {
$connect_params .= " user=$user";
}
if ($pw) {
$connect_params .= " password=$pw";
}
$conn = $connect_function($connect_params);
} elseif ($dbhost && $user && $pw && $dbname) {
$conn = $connect_function(
"host=$dbhost port=$port dbname=$dbname user=$user password=$pw");
} elseif ($dbhost && $dbname && $options && $tty) {
$conn = $connect_function($dbhost, $port, $options, $tty, $dbname);
} elseif ($dbhost && $dbname) {
$conn = $connect_function($dbhost, $port, $dbname);
} else {
$conn = false;
}
if ($conn == false) {
return $this->raiseError(); // XXX ERRORMSG
}
$this->connection = $conn;
return DB_OK;
}
// }}}
// {{{ disconnect()
/**
* Log out and disconnect from the database.
*
* @return bool TRUE on success, FALSE if not connected.
*/
function disconnect() {
return pg_close($this->connection); // XXX ERRORMSG
}
// }}}
// {{{ query()
/**
* Send a query to PostgreSQL and return the results as a DB_result object.
*
* @param $query the SQL query
*
* @return object a DB_result object on success, a DB error code
* on failure
*/
function &query($query) {
$this->last_query = $query;
$result = pg_exec($this->connection, $query);
if (!$result) {
return pg_errormessage($this->connection);
}
// Determine which queries that should return data, and which
// should return an error code only.
if (preg_match('/(SELECT|SHOW)/i', $query)) {
$resultObj = new DB_result($this, $result);
$this->row[$result] = 0; // reset the row counter.
$this->numrows[$result] = pg_numrows($result);
return $resultObj;
} else {
return DB_OK;
}
}
// }}}
// {{{ simpleQuery()
/**
* Send a query to PostgreSQL and return the results as a PostgreSQL resource
* identifier.
*
* @param $query the SQL query
*
* @return int returns a valid PostgreSQL result for successful SELECT
* queries, DB_OK for other successful queries. A DB error code
* is returned on failure.
*/
function simpleQuery($query) {
$this->last_query = $query;
$result = pg_exec($this->connection, $query);
if (!$result) {
return pg_errormessage($this->connection);
}
// Determine which queries that should return data, and which
// should return an error code only.
if (preg_match('/(SELECT|SHOW)/i', $query)) {
$this->row[$result] = 0; // reset the row counter.
$this->numrows[$result] = pg_numrows($result);
return $result;
} else {
return DB_OK;
}
}
// }}}
// {{{ fetchRow()
/**
* Fetch a row and return as array.
*
* @param $result PostgreSQL result identifier
* @param $fetchmode how the resulting array should be indexed
*
* @return int an array on success, a DB error code on failure, NULL
* if there is no more data
*/
function &fetchRow($result, $fetchmode = DB_FETCHMODE_DEFAULT) {
if ($fetchmode == DB_FETCHMODE_DEFAULT) {
$fetchmode = $this->fetchmode;
}
if ($this->row[$result]>=$this->numrows[$result]){
return NULL;
}
if ($fetchmode & DB_FETCHMODE_ASSOC) {
$row = pg_fetch_array($result, $this->row[$result]);
} else {
$row = pg_fetch_row($result, $this->row[$result]);
}
if (!$row) {
$err = pg_errormessage($this->connection);
if (!$err) {
return NULL;
}
return $err;
}
$this->row[$result]++;
return $row;
}
// }}}
// {{{ fetchInto()
/**
* Fetch a row and insert the data into an existing array.
*
* @param $result PostgreSQL result identifier
* @param $arr (reference) array where data from the row is stored
* @param $fetchmode how the array data should be indexed
*
* @return int DB_OK on success, a DB error code on failure
*/
function fetchInto($result, &$arr, $fetchmode = DB_FETCHMODE_DEFAULT) {
if ($fetchmode == DB_FETCHMODE_DEFAULT) {
$fetchmode = $this->fetchmode;
}
if ($this->row[$result]>=$this->numrows[$result]){
return NULL;
}
if ($fetchmode & DB_FETCHMODE_ASSOC) {
$arr = pg_fetch_array($result, $this->row[$result]);
} else {
$arr = pg_fetch_row($result, $this->row[$result]);
}
if (!$arr) {
/*
$errno = pg_errormessage($this->connection);
if (!$errno) {
return NULL;
}
return $errno;
*/
// the error codes are not supported in pgsql.
return $this->raiseError(DB_ERROR_NOT_CAPABLE);
}
$this->row[$result]++;
return DB_OK;
}
// }}}
// {{{ freeResult()
/**
* Free the internal resources associated with $result.
*
* @param $result PostgreSQL result identifier or DB statement identifier
*
* @return bool TRUE on success, FALSE if $result is invalid
*/
function freeResult($result) {
if (is_resource($result)) {
return pg_freeresult($result);
}
if (!isset($this->prepare_tokens[$result])) {
return false;
}
unset($this->prepare_tokens[$result]);
unset($this->prepare_types[$result]);
unset($this->row[$result]);
unset($this->numrows[$result]);
return true;
}
// }}}
// {{{ numCols()
/**
* Get the number of columns in a result set.
*
* @param $result PostgreSQL result identifier
*
* @return int the number of columns per row in $result
*/
function numCols($result) {
$cols = pg_numfields($result);
if (!$cols) {
return pg_errormessage($this->connection);
}
return $cols;
}
// }}}
// {{{ numRows()
/**
* Get the number of rows in a result set.
*
* @param $result PostgreSQL result identifier
*
* @return int the number of rows in $result
*/
function numRows($result) {
$rows = pg_numrows($result);
if (!$rows) {
return pg_errormessage($this->connection);
}
return $rows;
}
// }}}
// {{{ errorNative()
/**
* Get the native error code of the last error (if any) that
* occured on the current connection.
*
* @return int native PostgreSQL error code
*/
function errorNative() {
/* return pg_errormessage($this->connection); */
// the error codes are not supported in pgsql.
return $this->raiseError();
}
// }}}
// {{{ prepare()
/**
* Prepares a query for multiple execution with execute(). With
* PostgreSQL, this is emulated.
*/
function prepare($query) {
$tokens = split('[\&\?]', $query);
$token = 0;
$types = array();
for ($i = 0; $i < strlen($query); $i++) {
switch ($query[$i]) {
case '?':
$types[$token++] = DB_PARAM_SCALAR;
break;
case '&':
$types[$token++] = DB_PARAM_OPAQUE;
break;
}
}
$this->prepare_tokens[] = &$tokens;
end($this->prepare_tokens);
$k = key($this->prepare_tokens);
$this->prepare_types[$k] = $types;
return $k;
}
// }}}
// {{{ execute()
/**
* @return int returns a PostgreSQL result resource for successful
* SELECT queries, DB_OK for other successful queries. A DB error
* code is returned on failure.
*/
function execute($stmt, $data = false) {
$realquery = $this->execute_emulate_query($stmt, $data);
$this->last_query = $realquery;
$result = pg_exec($this->connection, $realquery);
if (!$result) {
return pg_errormessage($this->connection);
}
if (preg_match('/(SELECT|SHOW)/i', $realquery)) {
$this->row[$result] = 0; // reset the row counter.
$this->numrows[$result] = pg_numrows($result);
return $result;
} else {
return DB_OK;
}
}
// }}}
// {{{ autoCommit()
/**
* Enable/disable automatic commits [not supported by PostgreSQL]
*/
function autoCommit($onoff = false) {
return $this->raiseError(DB_ERROR_NOT_CAPABLE);
}
// }}}
// {{{ commit()
/**
* Commit transactions on the current connection
*/
function commit() {
$result = pg_exec($this->connection, "end;");
if (!$result) {
return pg_errormessage($this->connection);
}
return DB_OK;
}
// }}}
// {{{ rollback()
/**
* Roll back all uncommitted transactions on the current connection.
*/
function rollback() {
$result = pg_exec($this->connection, "abort;");
if (!$result) {
return pg_errormessage($this->connection);
}
return DB_OK;
}
// }}}
// TODO/wishlist:
// simpleFetch
// simpleGet
// affectedRows
// longReadlen
// binmode
}
// Local variables:
// tab-width: 4
// c-basic-offset: 4
// End:
?>
|