2012-04-10 14:06:34 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2012-04-10 14:06:34 -04:00
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MySQL specific class
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @subpackage Drivers
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
class MySQL extends DB_PDO {
|
|
|
|
|
2012-04-19 11:42:50 -04:00
|
|
|
/**
|
|
|
|
* Set the backtick as the MySQL escape character
|
2012-04-20 13:17:39 -04:00
|
|
|
*
|
|
|
|
* @var string
|
2012-04-19 11:42:50 -04:00
|
|
|
*/
|
2012-04-10 14:06:34 -04:00
|
|
|
protected $escape_char = '`';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to MySQL Database
|
|
|
|
*
|
|
|
|
* @param string $dsn
|
2012-04-19 11:42:50 -04:00
|
|
|
* @param string $username
|
|
|
|
* @param string $password
|
|
|
|
* @param array $options
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function __construct($dsn, $username=null, $password=null, $options=array())
|
|
|
|
{
|
2012-07-05 14:19:49 -04:00
|
|
|
if (defined('PDO::MYSQL_ATTR_INIT_COMMAND'))
|
|
|
|
{
|
|
|
|
$options = array_merge($options, array(
|
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($dsn, 'mysql') === FALSE)
|
|
|
|
{
|
|
|
|
$dsn = 'mysql:'.$dsn;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent::__construct($dsn, $username, $password, $options);
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to a different database
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
*/
|
|
|
|
public function switch_db($name)
|
|
|
|
{
|
2012-05-07 16:05:51 -04:00
|
|
|
// TODO Implement
|
2012-04-10 14:06:34 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
|
|
|
public function truncate($table)
|
|
|
|
{
|
|
|
|
$this->query("TRUNCATE `{$table}`");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//End of mysql_driver.php
|