sql = new $class; } // -------------------------------------------------------------------------- /** * Empty a table * * @param string $table */ public function truncate($table) { $this->query("TRUNCATE `{$table}`"); } // -------------------------------------------------------------------------- /** * Get databases for the current connection * * @return array */ public function get_dbs() { $res = $this->query("SHOW DATABASES"); return array_values($this->fetchAll(PDO::FETCH_ASSOC)); } // -------------------------------------------------------------------------- /** * Returns the tables available in the current database * * @return array */ public function get_tables() { $res = $this->query("SHOW TABLES"); $tables = array(); $rows = $res->fetchAll(PDO::FETCH_NUM); foreach($rows as $r) { $tables[] = $r[0]; } return $tables; } // -------------------------------------------------------------------------- /** * Returns system tables for the current database * * @return array */ public function get_system_tables() { //MySQL doesn't have system tables return array(); } // -------------------------------------------------------------------------- /** * Return the number of rows returned for a SELECT query * * @return int */ public function num_rows() { return isset($this->statement) ? $this->statement->rowCount() : FALSE; } // -------------------------------------------------------------------------- /** * Create an SQL backup file for the current database's structure * * @return string */ public function backup_structure() { // @todo Implement Backup function return ''; } // -------------------------------------------------------------------------- /** * Create an SQL backup file for the current database's data * * @return string */ public function backup_data() { // @todo Implement Backup function return ''; } // -------------------------------------------------------------------------- /** * Surrounds the string with the databases identifier escape characters * * @param string $ident * @return string */ public function quote_ident($ident) { if (is_array($ident)) { return array_map(array($this, 'quote_ident'), $ident); } // Split each identifier by the period $hiers = explode('.', $ident); return '`'.implode('`.`', $hiers).'`'; } } //End of mysql.php