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
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MySQL specific class
|
|
|
|
*
|
|
|
|
* @extends DB_PDO
|
|
|
|
*/
|
|
|
|
class MySQL extends DB_PDO {
|
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
/**
|
|
|
|
* Connect to MySQL Database
|
|
|
|
*
|
|
|
|
* @param string $dsn
|
|
|
|
* @param string $username=null
|
|
|
|
* @param string $password=null
|
|
|
|
* @param array $options=array()
|
|
|
|
*/
|
2012-01-30 07:57:17 -05:00
|
|
|
function __construct($dsn, $username=null, $password=null, $options=array())
|
|
|
|
{
|
2012-02-01 21:02:11 -05:00
|
|
|
$options = array_merge(array(
|
2012-02-01 16:36:55 -05:00
|
|
|
|
2012-02-01 21:02:11 -05:00
|
|
|
),
|
|
|
|
$options);
|
2012-02-01 16:36:55 -05:00
|
|
|
|
2012-02-01 21:02:11 -05:00
|
|
|
parent::__construct("mysql:$dsn", $username, $password, $options);
|
2012-01-30 07:57:17 -05:00
|
|
|
}
|
2012-01-26 16:09:05 -05:00
|
|
|
|
2012-01-30 14:03:16 -05:00
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
|
|
|
function truncate($table)
|
|
|
|
{
|
2012-02-06 16:34:00 -05:00
|
|
|
$this->query("TRUNCATE `{$table}`");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get databases for the current connection
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function get_dbs()
|
|
|
|
{
|
|
|
|
$res = $this->query("SHOW DATABASES");
|
|
|
|
return $this->fetchAll(PDO::FETCH_ASSOC);
|
2012-01-30 14:03:16 -05:00
|
|
|
}
|
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
/**
|
2012-02-02 19:07:26 -05:00
|
|
|
* Returns the tables available in the current database
|
2012-02-02 17:43:09 -05:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-02-02 19:07:26 -05:00
|
|
|
function get_tables()
|
2012-02-02 17:43:09 -05:00
|
|
|
{
|
2012-02-06 16:34:00 -05:00
|
|
|
$res = $this->query("SHOW TABLES");
|
2012-02-02 17:43:09 -05:00
|
|
|
return $res->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
}
|
|
|
|
|
2012-02-06 16:56:16 -05:00
|
|
|
/**
|
|
|
|
* Return the number of rows returned for a SELECT query
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function num_rows()
|
|
|
|
{
|
|
|
|
// TODO: Implement
|
|
|
|
}
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
class MySQL_manip extends MySQL {
|
|
|
|
|
|
|
|
function __construct($dsn, $user=null, $pass=null, $opt=array())
|
|
|
|
{
|
|
|
|
parent::__construct($dsn, $user, $pass, $opt);
|
|
|
|
}
|
2012-02-06 17:39:53 -05:00
|
|
|
}
|
|
|
|
//End of mysql.php
|