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
|
<?php // -*-php-*-
rcs_id('$Id: ADODB.php,v 1.13 2005/10/30 15:49:00 rurban Exp $');
require_once('lib/WikiDB.php');
/**
* WikiDB layer for ADODB, which does nothing more than calling the
* mysql-specific ADODB backend.
* Support for a newer adodb library, the adodb extension library
* and more databases will come with PhpWiki v1.3.10
*
* @author: Lawrence Akka, Reini Urban
*/
class WikiDB_ADODB extends WikiDB
{
function WikiDB_ADODB ($dbparams) {
$backend = 'ADODB';
if (is_array($dbparams['dsn']))
$backend = $dbparams['dsn']['phptype'];
elseif (preg_match('/^(\w+):/', $dbparams['dsn'], $m))
$backend = $m[1];
// Do we have a override? (currently: mysql, sqlite, oracle, mssql, oci8po, postgres7)
// TODO: mysqlt (innodb or bdb)
if ($backend == 'pgsql') { // PearDB DSN cross-compatiblity hack (for unit testing)
$backend = 'postgres7';
if (is_string($dbparams['dsn']))
$dbparams['dsn'] = $backend . ':' . substr($dbparams['dsn'], 6);
}
if (FindFile("lib/WikiDB/backend/ADODB_".$backend.".php",true)) {
$backend = 'ADODB_' . $backend;
} else {
$backend = 'ADODB';
}
include_once("lib/WikiDB/backend/".$backend.".php");
$backend_class = "WikiDB_backend_".$backend;
$backend = new $backend_class($dbparams);
$this->WikiDB($backend, $dbparams);
}
/**
* Determine whether page exists (in non-default form).
* @see WikiDB::isWikiPage
*/
function isWikiPage ($pagename) {
$pagename = (string) $pagename;
if ($pagename === '') return false;
if (!array_key_exists($pagename, $this->_cache->_id_cache)) {
$this->_cache->_id_cache[$pagename] = $this->_backend->is_wiki_page($pagename);
}
return $this->_cache->_id_cache[$pagename];
}
// add surrounding quotes '' if string
function quote ($in) {
if (is_int($in) || is_double($in)) {
return $in;
} elseif (is_bool($in)) {
return $in ? 1 : 0;
} elseif (is_null($in)) {
return 'NULL';
} else {
return $this->_backend->_dbh->qstr($in);
}
}
// ADODB handles everything as string
// Don't add surrounding quotes '', same as in PearDB
function qstr ($in) {
return $this->_backend->_dbh->addq($in);
}
function isOpen () {
global $request;
if (!$request->_dbi) return false;
return is_resource($this->_backend->connection());
}
// SQL result: for simple select or create/update queries
// returns the database specific resource type
function genericSqlQuery($sql, $args=false) {
if ($args)
$result = $this->_backend->_dbh->Execute($sql, $args);
else
$result = $this->_backend->_dbh->Execute($sql);
if (!$result) {
trigger_error("SQL Error: ".$this->_backend->_dbh->ErrorMsg(), E_USER_WARNING);
return false;
} else {
return $result;
}
}
// SQL iter: for simple select or create/update queries
// returns the generic iterator object (count,next)
function genericSqlIter($sql, $field_list = NULL) {
$result = $this->genericSqlQuery($sql);
return new WikiDB_backend_ADODB_generic_iter($this->_backend, $result, $field_list);
}
};
// For emacs users
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|