OpenSQLManager/sys/db/drivers/mysql/mysql_driver.php

93 lines
1.9 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
2012-04-03 11:23:53 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-01-26 16:09:05 -05:00
*/
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 {
2012-04-10 15:43:39 -04:00
protected $escape_char = '`';
/**
* Connect to MySQL Database
2012-04-03 11:23:53 -04:00
*
* @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-04-11 14:57:38 -04:00
$options = array_merge($options, array(
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'",
));
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-04-03 11:23:53 -04:00
// --------------------------------------------------------------------------
2012-01-26 16:09:05 -05:00
2012-04-09 15:24:10 -04:00
/**
* Connect to a different database
*
* @param string $name
*/
public function switch_db($name)
{
// @todo Implement
return FALSE;
}
// --------------------------------------------------------------------------
/**
* 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}`");
}
// --------------------------------------------------------------------------
/**
* Returns system tables for the current database
2012-04-03 11:23:53 -04:00
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_system_tables()
{
2012-04-09 10:52:51 -04:00
return array('information_schema');
}
2012-04-03 11:23:53 -04:00
// --------------------------------------------------------------------------
2012-02-06 16:56:16 -05:00
/**
* Return the number of rows returned for a SELECT query
2012-04-03 11:23:53 -04:00
*
2012-02-06 16:56:16 -05:00
* @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
}
}
2012-04-09 15:41:48 -04:00
//End of mysql_driver.php