Query/drivers/mysql/mysql_driver.php

81 lines
1.6 KiB
PHP
Raw Normal View History

2012-04-10 14:06:34 -04:00
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* MySQL specific class
*
* @extends DB_PDO
*/
class MySQL extends DB_PDO {
/**
* Set the backtick as the MySQL escape character
*/
2012-04-10 14:06:34 -04:00
protected $escape_char = '`';
/**
* Connect to MySQL Database
*
* @param string $dsn
* @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-04-12 13:44:31 -04:00
$options = array_merge($options, array(
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'",
));
2012-04-10 14:06:34 -04:00
parent::__construct("mysql:$dsn", $username, $password, $options);
}
// --------------------------------------------------------------------------
/**
* Connect to a different database
*
* @param string $name
*/
public function switch_db($name)
{
// @todo Implement
return FALSE;
}
// --------------------------------------------------------------------------
/**
* Empty a table
*
* @param string $table
*/
public function truncate($table)
{
$this->query("TRUNCATE `{$table}`");
}
// --------------------------------------------------------------------------
/**
* Return the number of rows returned for a SELECT query
*
* @return int
*/
public function num_rows()
{
return isset($this->statement) ? $this->statement->rowCount() : FALSE;
}
}
//End of mysql_driver.php