dbConn = mysql_connect($parameters['server'], $parameters['username'], $parameters['password']); $this->active = mysql_select_db($parameters['database'], $this->dbConn); $this->database = $parameters['database']; if(!$this->dbConn) { $this->databaseError("Couldn't connect to MySQL database"); } parent::__construct(); } /** * Not implemented, needed for PDO */ public function getConnect($parameters) { return null; } /** * Returns true if this database supports collations * @return boolean */ public function supportsCollations() { return $this->getVersion() >= 4.1; } /** * The version of MySQL. * @var float */ private $mysqlVersion; /** * Get the version of MySQL. * @return float */ public function getVersion() { if(!$this->mysqlVersion) { $this->mysqlVersion = (float)$this->query("SELECT VERSION()")->value(); } return $this->mysqlVersion; } /** * Get the database server, namely mysql. * @return string */ public function getDatabaseServer() { return "mysql"; } public function query($sql, $errorLevel = E_USER_ERROR) { if(isset($_REQUEST['previewwrite']) && in_array(strtolower(substr($sql,0,strpos($sql,' '))), array('insert','update','delete','replace'))) { Debug::message("Will execute: $sql"); return; } if(isset($_REQUEST['showqueries'])) { $starttime = microtime(true); } $handle = mysql_query($sql, $this->dbConn); if(isset($_REQUEST['showqueries'])) { $endtime = round(microtime(true) - $starttime,4); Debug::message("\n$sql\n{$endtime}ms\n", false); } if(!$handle && $errorLevel) $this->databaseError("Couldn't run query: $sql | " . mysql_error($this->dbConn), $errorLevel); return new MySQLQuery($this, $handle); } public function getGeneratedID($table) { return mysql_insert_id($this->dbConn); } /** * OBSOLETE: Get the ID for the next new record for the table. * * @var string $table The name od the table. * @return int */ public function getNextID($table) { user_error('getNextID is OBSOLETE (and will no longer work properly)', E_USER_WARNING); $result = $this->query("SELECT MAX(ID)+1 FROM `$table`")->value(); return $result ? $result : 1; } public function isActive() { return $this->active ? true : false; } public function createDatabase() { $this->query("CREATE DATABASE $this->database"); $this->query("USE $this->database"); $this->tableList = $this->fieldList = $this->indexList = null; if(mysql_select_db($this->database, $this->dbConn)) { $this->active = true; return true; } } /** * Drop the database that this object is currently connected to. * Use with caution. */ public function dropDatabase() { $this->query("DROP DATABASE $this->database"); } /** * Returns the name of the currently selected database */ public function currentDatabase() { return $this->database; } /** * Switches to the given database. * If the database doesn't exist, you should call createDatabase() after calling selectDatabase() */ public function selectDatabase($dbname) { $this->database = $dbname; if($this->databaseExists($this->database)) mysql_select_db($this->database, $this->dbConn); $this->tableList = $this->fieldList = $this->indexList = null; } /** * Returns true if the named database exists. */ public function databaseExists($name) { $SQL_name = Convert::raw2sql($name); return $this->query("SHOW DATABASES LIKE '$SQL_name'")->value() ? true : false; } public function createTable($tableName, $fields = null, $indexes = null) { $fieldSchemas = $indexSchemas = ""; if($fields) foreach($fields as $k => $v) $fieldSchemas .= "`$k` $v,\n"; if($indexes) foreach($indexes as $k => $v) $fieldSchemas .= $this->getIndexSqlDefinition($k, $v) . ",\n"; $this->query("CREATE TABLE `$tableName` ( ID int(11) not null auto_increment, $fieldSchemas $indexSchemas primary key (ID) ) TYPE=MyISAM"); } /** * Alter a table's schema. * @param $table The name of the table to alter * @param $newFields New fields, a map of field name => field schema * @param $newIndexes New indexes, a map of index name => index type * @param $alteredFields Updated fields, a map of field name => field schema * @param $alteredIndexes Updated indexes, a map of index name => index type */ public function alterTable($tableName, $newFields = null, $newIndexes = null, $alteredFields = null, $alteredIndexes = null) { $fieldSchemas = $indexSchemas = ""; if($newFields) foreach($newFields as $k => $v) $alterList[] .= "ADD `$k` $v"; if($newIndexes) foreach($newIndexes as $k => $v) $alterList[] .= "ADD " . $this->getIndexSqlDefinition($k, $v); if($alteredFields) foreach($alteredFields as $k => $v) $alterList[] .= "CHANGE `$k` `$k` $v"; if($alteredIndexes) foreach($alteredIndexes as $k => $v) { $alterList[] .= "DROP INDEX `$k`"; $alterList[] .= "ADD ". $this->getIndexSqlDefinition($k, $v); } $alterations = implode(",\n", $alterList); $this->query("ALTER TABLE `$tableName` " . $alterations); } public function renameTable($oldTableName, $newTableName) { $this->query("ALTER TABLE `$oldTableName` RENAME `$newTableName`"); } /** * Checks a table's integrity and repairs it if necessary. * @var string $tableName The name of the table. * @return boolean Return true if the table has integrity after the method is complete. */ public function checkAndRepairTable($tableName) { if(!$this->runTableCheckCommand("CHECK TABLE `$tableName`")) { Database::alteration_message("Table $tableName: repaired","repaired"); return $this->runTableCheckCommand("REPAIR TABLE `$tableName` USE_FRM"); } else { return true; } } /** * Helper function used by checkAndRepairTable. * @param string $sql Query to run. * @return boolean Returns if the query returns a successful result. */ protected function runTableCheckCommand($sql) { $testResults = $this->query($sql); foreach($testResults as $testRecord) { if(strtolower($testRecord['Msg_text']) != 'ok') { return false; } } return true; } public function createField($tableName, $fieldName, $fieldSpec) { $this->query("ALTER TABLE `$tableName` ADD `$fieldName` $fieldSpec"); } /** * Change the database type of the given field. * @param string $tableName The name of the tbale the field is in. * @param string $fieldName The name of the field to change. * @param string $fieldSpec The new field specification */ public function alterField($tableName, $fieldName, $fieldSpec) { // This wee function was built for MoT. It will preserve the binary format of the content, // but change the character set /* $changes = $this->query("SELECT ID, `$fieldName` FROM `$tableName`")->map(); */ $this->query("ALTER TABLE `$tableName` CHANGE `$fieldName` `$fieldName` $fieldSpec"); // This wee function was built for MoT. It will preserve the binary format of the content, // but change the character set /* echo "