OpenSQLManager/sys/db/drivers/mysql.php

157 lines
3.2 KiB
PHP
Raw Normal View History

2012-01-26 16:09:05 -05:00
<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
2012-01-30 07:57:17 -05:00
// --------------------------------------------------------------------------
2012-03-15 16:39:01 -04:00
/**
* MySQL specific class
*
* @extends DB_PDO
*/
2012-01-30 07:57:17 -05:00
class MySQL extends DB_PDO {
/**
* Connect to MySQL Database
*
* @param string $dsn
* @param string $username=null
* @param string $password=null
* @param array $options=array()
*/
2012-02-21 11:45:42 -05:00
public function __construct($dsn, $username=null, $password=null, $options=array())
2012-01-30 07:57:17 -05:00
{
2012-02-01 21:02:11 -05:00
parent::__construct("mysql:$dsn", $username, $password, $options);
$class = __CLASS__.'_sql';
$this->sql = new $class;
2012-01-30 07:57:17 -05:00
}
// --------------------------------------------------------------------------
2012-01-26 16:09:05 -05:00
/**
* Empty a table
*
* @param string $table
*/
2012-02-21 11:45:42 -05:00
public function truncate($table)
{
2012-02-06 16:34:00 -05:00
$this->query("TRUNCATE `{$table}`");
}
// --------------------------------------------------------------------------
2012-02-06 16:34:00 -05:00
/**
* Get databases for the current connection
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_dbs()
2012-02-06 16:34:00 -05:00
{
$res = $this->query("SHOW DATABASES");
2012-03-15 16:39:01 -04:00
return array_values($this->fetchAll(PDO::FETCH_ASSOC));
}
// --------------------------------------------------------------------------
/**
2012-02-02 19:07:26 -05:00
* Returns the tables available in the current database
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_tables()
{
2012-02-06 16:34:00 -05:00
$res = $this->query("SHOW TABLES");
2012-03-15 16:39:01 -04:00
$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
*/
2012-02-21 11:45:42 -05:00
public function get_system_tables()
{
//MySQL doesn't have system tables
return array();
}
// --------------------------------------------------------------------------
2012-02-06 16:56:16 -05:00
/**
* Return the number of rows returned for a SELECT query
*
* @return int
*/
2012-02-21 11:45:42 -05:00
public function num_rows()
2012-02-06 16:56:16 -05:00
{
2012-02-13 14:29:00 -05:00
return isset($this->statement) ? $this->statement->rowCount() : FALSE;
2012-02-06 16:56:16 -05:00
}
// --------------------------------------------------------------------------
/**
* 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)
{
2012-03-09 08:04:47 -05:00
if (is_array($ident))
{
2012-03-09 08:26:16 -05:00
return array_map(array($this, 'quote_ident'), $ident);
2012-03-09 08:04:47 -05:00
}
// Split each identifier by the period
$hiers = explode('.', $ident);
return '`'.implode('`.`', $hiers).'`';
}
}
2012-02-06 17:39:53 -05:00
//End of mysql.php