1999-11-22 19:00:53 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// +----------------------------------------------------------------------+
|
|
|
|
// | PHP version 4.0 |
|
|
|
|
// +----------------------------------------------------------------------+
|
|
|
|
// | Copyright (c) 1997, 1998, 1999 The PHP Group |
|
|
|
|
// +----------------------------------------------------------------------+
|
|
|
|
// | This source file is subject to version 2.0 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_0.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: Stig Bakken <ssb@fast.no> |
|
|
|
|
// | |
|
|
|
|
// +----------------------------------------------------------------------+
|
|
|
|
//
|
|
|
|
// Database independent query interface.
|
|
|
|
//
|
|
|
|
|
|
|
|
// {{{ Database independent error codes.
|
|
|
|
|
|
|
|
define("DB_OK", 0);
|
|
|
|
define("DB_ERROR", -1);
|
|
|
|
define("DB_ERROR_SYNTAX", -2);
|
|
|
|
define("DB_ERROR_CONSTRAINT", -3);
|
|
|
|
define("DB_ERROR_NOT_FOUND", -4);
|
|
|
|
define("DB_ERROR_ALREADY_EXISTS", -5);
|
|
|
|
define("DB_ERROR_UNSUPPORTED", -6);
|
|
|
|
define("DB_ERROR_MISMATCH", -7);
|
|
|
|
define("DB_ERROR_INVALID", -8);
|
|
|
|
define("DB_ERROR_NOT_CAPABLE", -9);
|
|
|
|
define("DB_ERROR_TRUNCATED", -10);
|
|
|
|
define("DB_ERROR_INVALID_NUMBER", -11);
|
|
|
|
define("DB_ERROR_INVALID_DATE", -12);
|
|
|
|
define("DB_ERROR_DIVZERO", -13);
|
1999-11-29 23:13:55 +08:00
|
|
|
define("DB_ERROR_NODBSELECTED", -14);
|
1999-12-08 21:49:09 +08:00
|
|
|
define("DB_ERROR_CANNOT_CREATE", -15);
|
|
|
|
define("DB_ERROR_CANNOT_DELETE", -16);
|
|
|
|
define("DB_ERROR_CANNOT_DROP", -17);
|
1999-11-22 19:00:53 +08:00
|
|
|
|
|
|
|
// }}}
|
|
|
|
// {{{ Prepare/execute parameter types
|
|
|
|
|
|
|
|
define("DB_PARAM_SCALAR", 1);
|
|
|
|
define("DB_PARAM_OPAQUE", 2);
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// {{{ Binary data modes
|
|
|
|
|
|
|
|
define("DB_BINMODE_PASSTHRU", 1);
|
|
|
|
define("DB_BINMODE_RETURN", 2);
|
|
|
|
define("DB_BINMODE_CONVERT", 3);
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
// {{{ class DB
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class implements a factory method for creating DB objects,
|
|
|
|
* as well as some "static methods".
|
|
|
|
*
|
|
|
|
* @version 100
|
|
|
|
* @author Stig Bakken <ssb@fast.no>
|
|
|
|
* @since 4.0b4
|
|
|
|
*/
|
|
|
|
class DB {
|
1999-12-08 21:49:09 +08:00
|
|
|
// {{{ factory()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Create a new DB object for the specified database type.
|
|
|
|
* @param $type database type
|
|
|
|
* @return object a newly created DB object, or false on error
|
|
|
|
*/
|
|
|
|
function factory($type) {
|
|
|
|
global $USED_PACKAGES;
|
|
|
|
// "include" should be replaced with "use" once PHP gets it
|
|
|
|
$pkgname = 'DB/' . $type;
|
|
|
|
if (!is_array($USED_PACKAGES) || !$USED_PACKAGES[$pkgname]) {
|
|
|
|
if (!@include("DB/${type}.php")) {
|
|
|
|
return DB_ERROR_NOT_FOUND;
|
|
|
|
} else {
|
|
|
|
$USED_PACKAGES[$pkgname] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$classname = 'DB_' . $type;
|
|
|
|
$obj = new $classname;
|
|
|
|
return $obj;
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ connect()
|
|
|
|
|
1999-11-29 23:13:55 +08:00
|
|
|
function connect($dsn, $persistent = false) {
|
|
|
|
global $USED_PACKAGES;
|
|
|
|
|
|
|
|
$dsninfo = DB::parseDSN($dsn);
|
|
|
|
$type = $dsninfo['phptype'];
|
|
|
|
// "include" should be replaced with "use" once PHP gets it
|
|
|
|
$pkgname = 'DB/' . $type;
|
|
|
|
if (!is_array($USED_PACKAGES) || !$USED_PACKAGES[$pkgname]) {
|
|
|
|
if (!@include($pkgname . '.php')) {
|
|
|
|
return DB_ERROR_NOT_FOUND;
|
|
|
|
} else {
|
|
|
|
$USED_PACKAGES[$pkgname] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$classname = 'DB_' . $type;
|
|
|
|
$obj = new $classname;
|
|
|
|
$obj->connect(&$dsninfo, $persistent);
|
|
|
|
return $obj; // XXX ADDREF
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ apiVersion()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Return the DB API version.
|
|
|
|
* @return int the DB API version number
|
|
|
|
*/
|
|
|
|
function apiVersion() {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ isError()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Tell whether a result code from a DB method is an error.
|
|
|
|
* @param $code result code
|
|
|
|
* @return bool whether $code is an error
|
|
|
|
*/
|
|
|
|
function isError($code) {
|
|
|
|
return is_int($code) && ($code < 0);
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ errorMessage()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Return a textual error message for an error code.
|
|
|
|
* @param $code error code
|
|
|
|
* @return string error message
|
|
|
|
*/
|
|
|
|
function errorMessage($code) {
|
|
|
|
if (!is_array($errorMessages)) {
|
|
|
|
$errorMessages = array(
|
|
|
|
DB_OK => "no error",
|
|
|
|
DB_ERROR => "unknown error",
|
|
|
|
DB_ERROR_SYNTAX => "syntax error",
|
|
|
|
DB_ERROR_CONSTRAINT => "constraint violation",
|
|
|
|
DB_ERROR_NOT_FOUND => "not found",
|
|
|
|
DB_ERROR_ALREADY_EXISTS => "already exists",
|
|
|
|
DB_ERROR_UNSUPPORTED => "not supported",
|
|
|
|
DB_ERROR_MISMATCH => "mismatch",
|
|
|
|
DB_ERROR_INVALID => "invalid",
|
|
|
|
DB_ERROR_NOT_CAPABLE => "DB implementation not capable",
|
|
|
|
DB_ERROR_INVALID_NUMBER => "invalid number",
|
|
|
|
DB_ERROR_INVALID_DATE => "invalid date or time",
|
1999-11-29 23:13:55 +08:00
|
|
|
DB_ERROR_DIVZERO => "division by zero",
|
|
|
|
DB_ERROR_NODBSELECTED => "no database selected"
|
1999-11-22 19:00:53 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return $errorMessages[$code];
|
|
|
|
}
|
1999-11-29 23:13:55 +08:00
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ parseDSN()
|
|
|
|
|
1999-11-29 23:13:55 +08:00
|
|
|
/**
|
|
|
|
* Parse a data source name and return an associative array with
|
|
|
|
* the following keys:
|
|
|
|
* phptype Database backend used in PHP (mysql, odbc etc.)
|
|
|
|
* dbsyntax Database used with regards to SQL syntax etc.
|
|
|
|
* protocol Communication protocol to use (tcp, unix etc.)
|
|
|
|
* hostspec Host specification (hostname[:port])
|
|
|
|
* database Database to use on the DBMS server
|
|
|
|
* username User name for login
|
|
|
|
* password Password for login
|
|
|
|
*
|
|
|
|
* The format of the supplied DSN is in its fullest form:
|
|
|
|
* phptype(dbsyntax)://username:password@protocol+hostspec/database
|
|
|
|
* Most variations are allowed:
|
|
|
|
* phptype://username:password@protocol+hostspec/database
|
|
|
|
* phptype://username:password@hostspec/database
|
|
|
|
* phptype://username:password@hostspec
|
|
|
|
* phptype://hostspec/database
|
|
|
|
* phptype://hostspec
|
|
|
|
* phptype(dbsyntax)
|
|
|
|
* phptype
|
|
|
|
*
|
|
|
|
* FALSE is returned on error.
|
|
|
|
*
|
|
|
|
* @param $dsn Data Source Name to be parsed
|
|
|
|
*/
|
|
|
|
function parseDSN($dsn) {
|
|
|
|
$parsed = array(
|
|
|
|
'phptype' => false,
|
|
|
|
'dbsyntax' => false,
|
|
|
|
'protocol' => false,
|
|
|
|
'hostspec' => false,
|
|
|
|
'database' => false,
|
|
|
|
'username' => false,
|
|
|
|
'password' => false
|
|
|
|
);
|
1999-11-30 02:10:05 +08:00
|
|
|
if (preg_match('|^([^:]+)://|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$dbtype = $arr[1];
|
1999-11-30 02:10:05 +08:00
|
|
|
$dsn = preg_replace('|^[^:]+://|', '', $dsn);
|
1999-11-29 23:13:55 +08:00
|
|
|
// match "phptype(dbsyntax)"
|
1999-11-30 02:10:05 +08:00
|
|
|
if (preg_match('|^([^\(]+)\((.+)\)$|', $dbtype, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['phptype'] = $arr[1];
|
|
|
|
$parsed['dbsyntax'] = $arr[2];
|
|
|
|
} else {
|
|
|
|
$parsed['phptype'] = $dbtype;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// match "phptype(dbsyntax)"
|
1999-11-30 02:10:05 +08:00
|
|
|
if (preg_match('|^([^\(]+)\((.+)\)$|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['phptype'] = $arr[1];
|
|
|
|
$parsed['dbsyntax'] = $arr[2];
|
|
|
|
} else {
|
|
|
|
$parsed['phptype'] = $dsn;
|
|
|
|
}
|
|
|
|
return $parsed; // XXX ADDREF
|
|
|
|
}
|
|
|
|
|
1999-12-08 05:38:51 +08:00
|
|
|
if (preg_match('|^(.*)/([^/]+)/?$|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['database'] = $arr[2];
|
|
|
|
$dsn = $arr[1];
|
|
|
|
}
|
|
|
|
|
1999-11-30 02:10:05 +08:00
|
|
|
if (preg_match('|^([^:]+):([^@]+)@?(.*)$|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['username'] = $arr[1];
|
|
|
|
$parsed['password'] = $arr[2];
|
|
|
|
$dsn = $arr[3];
|
1999-11-30 02:10:05 +08:00
|
|
|
} elseif (preg_match('|^([^:]+)@(.*)$|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['username'] = $arr[1];
|
|
|
|
$dsn = $arr[3];
|
|
|
|
}
|
|
|
|
|
1999-11-30 02:10:05 +08:00
|
|
|
if (preg_match('|^([^\+]+)\+(.*)$|', $dsn, &$arr)) {
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['protocol'] = $arr[1];
|
|
|
|
$dsn = $arr[2];
|
|
|
|
}
|
|
|
|
|
1999-12-08 05:30:38 +08:00
|
|
|
if (!$parsed['database'])
|
1999-12-08 05:41:34 +08:00
|
|
|
$dsn = preg_replace('|/+$|', '', $dsn);
|
1999-12-08 05:30:38 +08:00
|
|
|
|
1999-11-29 23:13:55 +08:00
|
|
|
$parsed['hostspec'] = $dsn;
|
|
|
|
|
|
|
|
if (!$parsed['dbsyntax']) {
|
|
|
|
$parsed['dbsyntax'] = $parsed['phptype'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $parsed; // XXX ADDREF
|
|
|
|
}
|
1999-12-08 21:49:09 +08:00
|
|
|
|
|
|
|
// }}}
|
1999-11-22 19:00:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// {{{ class DB_result
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class implements a wrapper for a DB result set.
|
|
|
|
* A new instance of this class will be returned by the DB implementation
|
|
|
|
* after processing a query that returns data.
|
|
|
|
*/
|
|
|
|
class DB_result {
|
|
|
|
var $dbh;
|
|
|
|
var $result;
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// {{{ DB_result()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* DB_result constructor.
|
|
|
|
* @param $dbh DB object reference
|
|
|
|
* @param $result result resource id
|
|
|
|
*/
|
1999-11-29 23:13:55 +08:00
|
|
|
function DB_result(&$dbh, $result) {
|
|
|
|
$this->dbh = &$dbh;
|
1999-11-22 19:00:53 +08:00
|
|
|
$this->result = $result;
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ fetchRow()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Fetch and return a row of data.
|
|
|
|
* @return array a row of data, or false on error
|
|
|
|
*/
|
|
|
|
function fetchRow() {
|
|
|
|
return $this->dbh->fetchRow($this->result);
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ fetchInto()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Fetch a row of data into an existing array.
|
1999-12-08 21:49:09 +08:00
|
|
|
*
|
1999-11-22 19:00:53 +08:00
|
|
|
* @param $arr reference to data array
|
|
|
|
* @return int error code
|
|
|
|
*/
|
1999-11-29 23:13:55 +08:00
|
|
|
function fetchInto(&$arr) {
|
1999-11-22 19:00:53 +08:00
|
|
|
return $this->dbh->fetchInto($this->result, &$arr);
|
|
|
|
}
|
|
|
|
|
1999-12-08 21:49:09 +08:00
|
|
|
// }}}
|
|
|
|
// {{{ numCols()
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the the number of columns in a result set.
|
|
|
|
*
|
|
|
|
* @return int the number of columns, or a DB error code
|
|
|
|
*/
|
|
|
|
function numCols() {
|
|
|
|
return $this->dbh->numCols($this->result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// {{{ free()
|
|
|
|
|
1999-11-22 19:00:53 +08:00
|
|
|
/**
|
|
|
|
* Frees the resource for this result and reset ourselves.
|
|
|
|
* @return int error code
|
|
|
|
*/
|
|
|
|
function free() {
|
|
|
|
$err = $this->dbh->freeResult($this->result);
|
|
|
|
if (DB::isError($err)) {
|
|
|
|
return $err;
|
|
|
|
}
|
|
|
|
$this->dbh = $this->result = false;
|
|
|
|
return true;
|
|
|
|
}
|
1999-12-08 21:49:09 +08:00
|
|
|
|
|
|
|
// }}}
|
1999-11-22 19:00:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
// Local variables:
|
|
|
|
// tab-width: 4
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// End:
|
|
|
|
?>
|