2007-09-14 03:23:36 +02:00
|
|
|
<?php
|
|
|
|
|
2007-09-14 03:28:16 +02:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage core
|
|
|
|
*/
|
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
/**
|
|
|
|
* PDO (general database) connector class.
|
|
|
|
*/
|
|
|
|
class PDODatabase extends Database {
|
2007-09-14 03:28:16 +02:00
|
|
|
/**
|
|
|
|
* Connection to the DBMS.
|
|
|
|
* @var resource
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
private $dbConn;
|
2007-09-14 03:28:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* True if we are connected to a database.
|
|
|
|
* @var boolean
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
private $active;
|
2007-09-14 03:28:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the database.
|
|
|
|
* @var string
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
private $database;
|
|
|
|
|
|
|
|
|
2007-09-14 03:32:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Last PDO statement, needed for affectedRows()
|
|
|
|
* @var PDO object
|
|
|
|
*/
|
|
|
|
private $stmt;
|
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
/**
|
|
|
|
* Connect to a database (MySQL, PostgreSQL, or MS SQL).
|
|
|
|
* @param parameters An map of parameters, which should include:
|
|
|
|
* <ul><li>database: The database to connect with</li>
|
|
|
|
* <li>server: The server, eg, localhost</li>
|
2007-09-14 03:28:16 +02:00
|
|
|
* <li>port: The port on which the server is listening (optional)</li>
|
|
|
|
* <li>instance: Instance of the server, MS SQL only (optional)</li>
|
2007-09-14 03:23:36 +02:00
|
|
|
* <li>username: The username to log on with</li>
|
|
|
|
* <li>password: The password to log on with</li>
|
|
|
|
* <li>database: The database to connect to</li></ul>
|
|
|
|
*/
|
|
|
|
public function __construct($parameters) {
|
2007-09-14 03:28:16 +02:00
|
|
|
$connect = PDODatabase::getConnect($parameters);
|
|
|
|
$connectWithDB = $connect . ';dbname=' . $parameters['database'];
|
|
|
|
try { // Try connect to the database, if it does not exist, create it
|
|
|
|
$this->dbConn = new PDO($connectWithDB, $parameters['username'], $parameters['password']);
|
|
|
|
} catch (PDOException $e) {
|
|
|
|
if (!self::createDatabase($connect, $parameters['username'], $parameters['password'], $parameters['database'])) {
|
|
|
|
$this->databaseError("Could not connect to the database, make sure the server is available and user credentials are correct");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the connection string from input.
|
|
|
|
* @param array $parameters The connection details.
|
|
|
|
* @return string $connect The connection string.
|
|
|
|
**/
|
|
|
|
public function getConnect($parameters) {
|
|
|
|
switch ($parameters['type']) {
|
|
|
|
case "mysql":
|
|
|
|
$port = '3306';
|
|
|
|
$type = 'mysql';
|
|
|
|
$instance = '';
|
2007-09-14 03:23:36 +02:00
|
|
|
break;
|
2007-09-14 03:28:16 +02:00
|
|
|
case "postgresql":
|
|
|
|
$port = '5432';
|
|
|
|
$type = 'pgsql';
|
|
|
|
$instance = '';
|
2007-09-14 03:23:36 +02:00
|
|
|
break;
|
2007-09-14 03:28:16 +02:00
|
|
|
case "mssql":
|
|
|
|
$port = '1433';
|
|
|
|
if (isset($parameters['instance']) && $parameters['instance'] != '') {
|
|
|
|
$instance = '\\' . $parameters['instance'];
|
|
|
|
} else {
|
|
|
|
$instance = '';
|
|
|
|
}
|
|
|
|
$type = 'mssql';
|
2007-09-14 03:23:36 +02:00
|
|
|
break;
|
2007-09-14 03:28:16 +02:00
|
|
|
default:
|
|
|
|
$this->databaseError("This database server is not available");
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
if (isset($parameters['port']) && is_numeric($parameters['port'])) {
|
|
|
|
$port = $parameters['port'];
|
|
|
|
}
|
|
|
|
$connect = $type . ':host=' . $parameters['server'] . $instance . ';port=' . $port;
|
|
|
|
return $connect;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if this database supports collations
|
|
|
|
*/
|
|
|
|
public function supportsCollations() {
|
2007-09-14 03:28:16 +02:00
|
|
|
$collations = false;
|
|
|
|
switch (PDO::ATTR_DRIVER_NAME) {
|
|
|
|
case "pgsql": // Generally supported in PostgreSQL (supported versions)
|
|
|
|
case "mssql": // Generally supported in MS SQL (supported versions)
|
|
|
|
$collations = true;
|
|
|
|
break;
|
|
|
|
case "mysql":
|
|
|
|
if ($this->getVersion() >= 4.1) { // Supported in MySQL since 4.1
|
|
|
|
$collations = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return $collations;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:28:16 +02:00
|
|
|
/**
|
|
|
|
* Get the database version.
|
|
|
|
* @return float
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function getVersion() {
|
2007-09-14 03:28:16 +02:00
|
|
|
switch ($type) {
|
|
|
|
case "mysql":
|
|
|
|
case "postgresql":
|
|
|
|
$query = "SELECT VERSION()";
|
|
|
|
break;
|
|
|
|
case "mssql":
|
|
|
|
$query = "SELECT @@VERSION";
|
|
|
|
break;
|
|
|
|
}
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare($query);
|
|
|
|
$stmt->execute();
|
|
|
|
$dbVersion = $stmt->fetchColumn();
|
2007-09-14 03:28:16 +02:00
|
|
|
$version = ereg_replace("([A-Za-z-])", "", $dbVersion);
|
|
|
|
return substr(trim($version), 0, 3); // Just get the major and minor version
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:29:09 +02:00
|
|
|
/**
|
|
|
|
* Query the database.
|
|
|
|
* @var string $sql The query to be issued to the database.
|
|
|
|
* @return result Return the result of the quers (if any).
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function query($sql, $errorLevel = E_USER_ERROR) {
|
2007-09-14 03:28:16 +02:00
|
|
|
if(isset($_REQUEST['previewwrite']) && in_array(strtolower(substr($sql,0,6)), array('insert','update'))) {
|
|
|
|
echo "<p>Will execute: $sql</p>";
|
|
|
|
return;
|
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
//Debug::backtrace();
|
2007-09-14 03:28:16 +02:00
|
|
|
if(isset($_REQUEST['showqueries'])) {
|
|
|
|
Debug::message("\n" . $sql . "\n");
|
|
|
|
$starttime = microtime(true);
|
|
|
|
}
|
|
|
|
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare($sql);
|
|
|
|
$handle = $stmt->execute(); // Execute and save the return value (true or false)
|
|
|
|
|
2007-09-14 03:28:16 +02:00
|
|
|
if(isset($_REQUEST['showqueries'])) {
|
|
|
|
$duration = microtime(true) - $starttime;
|
|
|
|
Debug::message("\n" . $duration . "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!$handle && $errorLevel) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$error = $stmt->errorInfo();
|
2007-09-14 03:28:16 +02:00
|
|
|
$this->databaseError("Couldn't run query: $sql | " . $error[2], $errorLevel);
|
|
|
|
}
|
2007-09-14 03:35:54 +02:00
|
|
|
return new PDOQuery($stmt);
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ID for the next new record for the table.
|
2007-09-14 03:32:37 +02:00
|
|
|
* Get the autogenerated ID from the previous INSERT query.
|
2007-09-14 03:35:54 +02:00
|
|
|
* Simulate mysql_insert_id by fetching the highest ID as there is no other reliable method across databases.
|
2007-09-14 03:32:37 +02:00
|
|
|
* @return int
|
|
|
|
*/
|
2007-09-14 03:35:54 +02:00
|
|
|
public function getGeneratedID($table) {
|
|
|
|
$stmt = $dbConn->prepare("SELECT MAX(ID) FROM :table");
|
|
|
|
$stmt->bindParam(":table", $table);
|
|
|
|
$handle = $stmt->execute();
|
|
|
|
$result = $stmt->fetchColumn();
|
|
|
|
return $handle ? $result : 0;
|
2007-09-14 03:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OBSOLETE: Get the ID for the next new record for the table.
|
2007-09-14 03:28:16 +02:00
|
|
|
* @var string $table The name od the table.
|
|
|
|
* @return int
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function getNextID($table) {
|
2007-09-14 03:32:37 +02:00
|
|
|
user_error('getNextID is OBSOLETE (and will no longer work properly)', E_USER_WARNING);
|
|
|
|
$stmt = $dbConn->prepare("SELECT MAX(ID)+1 FROM :table");
|
|
|
|
$stmt->bindParam(":table", $table);
|
|
|
|
$handle = $stmt->execute();
|
|
|
|
$result = $stmt->fetchColumn();
|
2007-09-14 03:28:16 +02:00
|
|
|
return $handle ? $result : 1;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
|
2007-09-14 03:29:09 +02:00
|
|
|
/**
|
|
|
|
* Determine if the the table is active.
|
|
|
|
* @return bool
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function isActive() {
|
2007-09-14 03:28:16 +02:00
|
|
|
return $this->active ? true : false;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the database and connect to it. This can be called if the
|
|
|
|
* initial database connection is not successful because the database
|
|
|
|
* does not exist.
|
|
|
|
* @param string $connect Connection string
|
|
|
|
* @param string $username Database username
|
|
|
|
* @param string $password Database Password
|
|
|
|
* @param string $database Database to which to create
|
|
|
|
* @return boolean Returns true if successful
|
|
|
|
*/
|
|
|
|
public function createDatabase($connect, $username, $password, $database) {
|
|
|
|
try {
|
|
|
|
$dbConn = new PDO($connect, $username, $password);
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE DATABASE :database");
|
|
|
|
$stmt->bindParam(":database", $database);
|
|
|
|
$stmt->execute();
|
2007-09-14 03:28:16 +02:00
|
|
|
$this->active = true;
|
|
|
|
} catch (PDOException $e) {
|
|
|
|
$this->databaseError($e->getMessage());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Create a new table with an integer primary key called ID.
|
2007-09-14 03:28:16 +02:00
|
|
|
* @var string $tableName The name of the table.
|
|
|
|
* @return void.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
2007-09-14 03:28:16 +02:00
|
|
|
public function createTable($tableName, $fields = null, $indexes = null) {
|
|
|
|
$fieldSchemas = $indexSchemas = "";
|
|
|
|
if ($fields) {
|
|
|
|
foreach($fields as $k => $v) $fieldSchemas .= "`$k` $v,\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ($parameters['type']) {
|
2007-09-14 03:29:09 +02:00
|
|
|
case "mysql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE TABLE :tableName (ID INT(11) NOT NULL AUTO_INCREMENT, $fieldSchemas PRIMARY KEY (ID)) TYPE=MyISAM");
|
2007-09-14 03:28:16 +02:00
|
|
|
break;
|
2007-09-14 03:29:09 +02:00
|
|
|
case "postgresql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE TABLE :tableName (ID SERIAL, $fieldSchemas PRIMARY KEY (ID))");
|
2007-09-14 03:28:16 +02:00
|
|
|
break;
|
2007-09-14 03:29:09 +02:00
|
|
|
case "mssql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE TABLE :tableName (ID INT(11) IDENTITY(1,1), $fieldSchemas PRIMARY KEY (ID))");
|
2007-09-14 03:28:16 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->databaseError("This database server is not available");
|
|
|
|
}
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->bindParam(":tableName", $tableName);
|
|
|
|
$stmt->execute();
|
|
|
|
|
2007-09-14 03:29:09 +02:00
|
|
|
if ($indexes) {
|
|
|
|
alterTable($tableName, null, $indexes, null, null);
|
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:29:09 +02:00
|
|
|
/**
|
|
|
|
* Alter fields and indexes in existing table.
|
|
|
|
* @var string $tableName The name of the table.
|
|
|
|
* @var string $newFields Fields to add.
|
|
|
|
* @var string $newIndexes Indexes to add.
|
|
|
|
* @var string $alteredFields Fields to change.
|
|
|
|
* @var string $alteredIndexes Indexes to change.
|
|
|
|
* @return void.
|
|
|
|
*/
|
2007-09-14 03:28:16 +02:00
|
|
|
public function alterTable($table, $newFields, $newIndexes, $alteredFields, $alteredIndexes) {
|
|
|
|
|
|
|
|
if ($newFields) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :table ADD :field :type");
|
|
|
|
$stmt->bindParam(':table', $table);
|
|
|
|
$stmt->bindParam(':field', $field);
|
|
|
|
$stmt->bindParam(':type', $type);
|
2007-09-14 03:29:09 +02:00
|
|
|
foreach ($newFields as $k => $v) {
|
|
|
|
$field = $k;
|
|
|
|
$type = $v;
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->execute();
|
2007-09-14 03:29:09 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
2007-09-14 03:28:16 +02:00
|
|
|
if ($newIndexes) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE INDEX :name ON :table :column");
|
|
|
|
$stmt->bindParam(':table', $table);
|
|
|
|
$stmt->bindParam(':name', $name);
|
|
|
|
$stmt->bindParam(':column', $column);
|
2007-09-14 03:29:09 +02:00
|
|
|
foreach ($newIndexes as $k => $v) {
|
|
|
|
$name = $k;
|
|
|
|
$column = $v;
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->execute();
|
2007-09-14 03:29:09 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
2007-09-14 03:28:16 +02:00
|
|
|
if ($alteredFields) {
|
2007-09-14 03:29:09 +02:00
|
|
|
switch ($parameters['type']) {
|
|
|
|
case "mysql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :table CHANGE :field :field :type");
|
2007-09-14 03:29:09 +02:00
|
|
|
break;
|
|
|
|
case "postgresql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("
|
2007-09-14 03:29:09 +02:00
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE :table RENAME :field TO oldfield;
|
|
|
|
ALTER TABLE :table ADD COLUMN :field :type;
|
|
|
|
UPDATE :table SET :field = CAST(oldfield AS :type);
|
|
|
|
ALTER TABLE :table DROP COLUMN oldfield;
|
|
|
|
COMMIT;
|
|
|
|
");
|
|
|
|
break;
|
|
|
|
case "mssql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :table ALTER COLUMN :field :type");
|
2007-09-14 03:29:09 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->databaseError("This database server is not available");
|
|
|
|
}
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->bindParam(':table', $table);
|
|
|
|
$stmt->bindParam(':field', $field);
|
|
|
|
$stmt->bindParam(':type', $type);
|
2007-09-14 03:29:09 +02:00
|
|
|
foreach ($alteredFields as $k => $v) {
|
|
|
|
$field = $k;
|
|
|
|
$type = $v;
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->execute();
|
2007-09-14 03:29:09 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:29:09 +02:00
|
|
|
if ($alteredIndexes) {
|
|
|
|
$drop = $dbConn->prepare("DROP INDEX :drop");
|
2007-09-14 03:32:37 +02:00
|
|
|
$drop->bindParam(':drop', $drop);
|
|
|
|
$stmt = $dbConn->prepare("CREATE INDEX :name ON :table :column");
|
|
|
|
$stmt->bindParam(':table', $table);
|
|
|
|
$stmt->bindParam(':name', $name);
|
|
|
|
$stmt->bindParam(':column', $column);
|
2007-09-14 03:29:09 +02:00
|
|
|
foreach ($newIndexes as $k => $v) {
|
|
|
|
$drop = $k;
|
|
|
|
$drop->execute();
|
|
|
|
$name = $k;
|
|
|
|
$column = $v;
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->execute();
|
2007-09-14 03:29:09 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
/**
|
2007-09-14 03:28:16 +02:00
|
|
|
* Rename an existing table, the TO is necessary for PostgreSQL and MS SQL.
|
2007-09-14 03:32:37 +02:00
|
|
|
* @var string $oldTableName The name of the existing table.
|
2007-09-14 03:28:16 +02:00
|
|
|
* @var string $newTableName How the table should be named from now on.
|
|
|
|
* @return void.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function renameTable($oldTableName, $newTableName) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :oldTableName RENAME TO :newTableName");
|
|
|
|
$stmt->bindParam(":oldTableName", $oldTableName);
|
|
|
|
$stmt->bindParam(":newTableName", $newTableName);
|
|
|
|
$stmt->execute();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-09-14 03:29:09 +02:00
|
|
|
* Checks a table's integrity and repairs it if necessary - only available in MySQL, not supported in PostgreSQL and MS SQL.
|
|
|
|
* @var string $tableName The name of the table.
|
|
|
|
* @return boolean Return true if the table has integrity after the method is complete.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function checkAndRepairTable($tableName) {
|
2007-09-14 03:29:09 +02:00
|
|
|
if ($parameters['type'] == "mysql") {
|
|
|
|
if (!$this->runTableCheckCommand("CHECK TABLE `$tableName`")) {
|
|
|
|
if(!Database::$supressOutput) {
|
|
|
|
echo "<li style=\"color: orange\">Table $tableName: repaired</li>";
|
|
|
|
}
|
|
|
|
return $this->runTableCheckCommand("REPAIR TABLE `$tableName` USE_FRM");
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->databaseError("Checking and repairing of tables is only supported in MySQL, for other databases please do manual checks");
|
|
|
|
return false;
|
|
|
|
}
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function used by checkAndRepairTable.
|
|
|
|
* @param string $sql Query to run.
|
|
|
|
* @return boolean Returns if the query returns a successful result.
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
protected function runTableCheckCommand($sql) {
|
2007-09-14 03:29:09 +02:00
|
|
|
foreach($dbConn->query($sql) as $testRecord) {
|
|
|
|
if(strtolower($testRecord['Msg_text']) != 'ok') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the given field to the given table.
|
2007-09-14 03:29:09 +02:00
|
|
|
* @param string $tableName The name of the table on which to create the field.
|
|
|
|
* @param string $fieldName The field to create.
|
|
|
|
* @param string $fieldSpec The datatype of the field.
|
|
|
|
* @return void
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function createField($tableName, $fieldName, $fieldSpec) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :tableName ADD :fieldName :fieldSpec");
|
|
|
|
$stmt->bindParam(":tableName", $tableName);
|
|
|
|
$stmt->bindParam(":fieldName", $fieldName);
|
|
|
|
$stmt->bindParam(":fieldSpec", $fieldSpec);
|
|
|
|
$stmt->execute();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:28:16 +02:00
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
/**
|
2007-09-14 03:29:09 +02:00
|
|
|
* Change the database type of the given field.
|
|
|
|
* @param string $table The table where to change the field.
|
|
|
|
* @param string $field The field to change.
|
|
|
|
* @param string $type The new type of the field
|
|
|
|
* @return void
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
2007-09-14 03:29:09 +02:00
|
|
|
public function alterField($table, $field, $type) {
|
|
|
|
switch ($parameters['type']) {
|
|
|
|
case "mysql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :table CHANGE :field :field :type");
|
2007-09-14 03:29:09 +02:00
|
|
|
break;
|
|
|
|
case "postgresql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("
|
2007-09-14 03:29:09 +02:00
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE :table RENAME :field TO oldfield;
|
|
|
|
ALTER TABLE :table ADD COLUMN :field :type;
|
|
|
|
UPDATE :table SET :field = CAST(oldfield AS :type);
|
|
|
|
ALTER TABLE :table DROP COLUMN oldfield;
|
|
|
|
COMMIT;
|
|
|
|
");
|
|
|
|
break;
|
|
|
|
case "mssql":
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("ALTER TABLE :table ALTER COLUMN :field :type");
|
2007-09-14 03:29:09 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->databaseError("This database server is not available");
|
|
|
|
}
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->bindParam(':table', $table);
|
|
|
|
$stmt->bindParam(':field', $field);
|
|
|
|
$stmt->bindParam(':type', $type);
|
|
|
|
$stmt->execute();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-09-14 03:29:09 +02:00
|
|
|
* Create an index on a table.
|
|
|
|
* @param string $tableName The name of the table.
|
|
|
|
* @param string $indexName The name of the index.
|
|
|
|
* @param string $indexSpec The specification of the index, see Database::requireIndex() for more details.
|
|
|
|
* @return void
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function createIndex($tableName, $indexName, $indexSpec) {
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt = $dbConn->prepare("CREATE INDEX :name ON :table :column");
|
|
|
|
$stmt->bindParam(':table', $tableName);
|
|
|
|
$stmt->bindParam(':name', $indexName);
|
|
|
|
$stmt->bindParam(':column', $indexSpec);
|
|
|
|
$stmt->execute();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Alter an index on a table.
|
|
|
|
* @param string $tableName The name of the table.
|
|
|
|
* @param string $indexName The name of the index.
|
|
|
|
* @param string $indexSpec The specification of the index, see Database::requireIndex() for more details.
|
|
|
|
* @return void
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function alterIndex($tableName, $indexName, $indexSpec) {
|
2007-09-14 03:29:09 +02:00
|
|
|
$drop = $dbConn->prepare("DROP INDEX :drop");
|
2007-09-14 03:32:37 +02:00
|
|
|
$drop->bindParam(':drop', $indexName);
|
|
|
|
$stmt = $dbConn->prepare("CREATE INDEX :name ON :table :column");
|
|
|
|
$stmt->bindParam(':table', $tableName);
|
|
|
|
$stmt->bindParam(':name', $indexName);
|
|
|
|
$stmt->bindParam(':column', $indexSpec);
|
2007-09-14 03:29:09 +02:00
|
|
|
$drop->execute();
|
2007-09-14 03:32:37 +02:00
|
|
|
$stmt->execute();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of all the fields for the given table.
|
|
|
|
* @param string $able Table of which to show the fields.
|
|
|
|
* Returns a map of field name => field spec.
|
|
|
|
*/
|
|
|
|
public function fieldList($table) {
|
|
|
|
|
|
|
|
// to be done - SHOW is used extensively but very MySQL specific
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of all the indexes for the given table.
|
|
|
|
* @param string $able Table of which to show the indexes.
|
|
|
|
* Returns a map of indexes.
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function indexList($table) {
|
2007-09-14 03:29:09 +02:00
|
|
|
|
|
|
|
// to be done - SHOW is used extensively but very MySQL specific
|
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:29:09 +02:00
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
/**
|
|
|
|
* Returns a list of all the tables in the column.
|
2007-09-14 03:29:09 +02:00
|
|
|
* Table names will all be in lowercase.
|
|
|
|
* Returns a map of a table.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function tableList() {
|
2007-09-14 03:29:09 +02:00
|
|
|
|
|
|
|
// to be done - SHOW is used extensively but very MySQL specific
|
|
|
|
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-09-14 03:32:37 +02:00
|
|
|
* Return the number of rows affected (DELETE, INSERT, or UPDATE) by the previous operation.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
|
|
|
public function affectedRows() {
|
2007-09-14 03:32:37 +02:00
|
|
|
return $stmt->rowCount();
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-09-14 03:32:37 +02:00
|
|
|
* A result-set from a database query (array).
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
2007-09-14 03:28:16 +02:00
|
|
|
class PDOQuery extends Query {
|
2007-09-14 03:35:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The object that holds the result set.
|
|
|
|
* @var $stmt
|
|
|
|
*/
|
|
|
|
private $stmt;
|
2007-09-14 03:23:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Hook the result-set given into a Query class, suitable for use by sapphire.
|
2007-09-14 03:35:54 +02:00
|
|
|
* @param PDO object $stmt The object of all returned values.
|
2007-09-14 03:23:36 +02:00
|
|
|
*/
|
2007-09-14 03:35:54 +02:00
|
|
|
public function __construct(PDODatabase $stmt) {
|
|
|
|
$this->stmt = $stmt;
|
2007-09-14 03:23:36 +02:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2007-09-14 03:35:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free the result-set given into a Query class.
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function __destroy() {
|
2007-09-14 03:35:54 +02:00
|
|
|
$this->stmt = null;
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:35:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if a given element is part of the result set.
|
|
|
|
* @param string string $row The element to search for.
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function seek($row) {
|
2007-09-14 03:35:54 +02:00
|
|
|
return in_array($row, $this->stmt->fetchAll());
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
2007-09-14 03:35:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the number of results.
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function numRecords() {
|
2007-09-14 03:35:54 +02:00
|
|
|
$value = $this->stmt->fetchAll();
|
|
|
|
return count($value);
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
|
2007-09-14 03:35:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2007-09-14 03:23:36 +02:00
|
|
|
public function nextRecord() {
|
2007-09-14 03:35:54 +02:00
|
|
|
$record = $this->stmt->fetch(PDO::FETCH_ASSOC);
|
|
|
|
if (count($record)) {
|
|
|
|
return $record;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2007-09-14 03:23:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|