Query/src/Drivers/Mysql/Driver.php

66 lines
1.4 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
2012-04-10 14:06:34 -04:00
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
2012-04-10 14:06:34 -04:00
*
2018-01-19 13:43:19 -05:00
* PHP version 7.1
2016-09-07 13:17:17 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-19 13:43:19 -05:00
* @copyright 2012 - 2018 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat4ion/Query
2012-04-10 14:06:34 -04:00
*/
namespace Query\Drivers\Mysql;
2014-04-02 17:08:50 -04:00
2016-10-13 21:55:23 -04:00
use PDO;
use Query\Drivers\AbstractDriver;
use Query\Drivers\DriverInterface;
2016-09-07 17:39:19 -04:00
2012-04-10 14:06:34 -04:00
/**
* MySQL specific class
*/
2016-10-12 22:12:25 -04:00
class Driver extends AbstractDriver implements DriverInterface {
2016-09-07 17:39:19 -04:00
/**
* Set the backtick as the MySQL escape character
*
* @var string
*/
2016-10-13 21:55:23 -04:00
protected $escapeCharOpen = '`';
2012-04-10 14:06:34 -04:00
/**
* Set the backtick as the MySQL escape character
2012-04-20 13:17:39 -04:00
*
* @var string
*/
2016-10-13 21:55:23 -04:00
protected $escapeCharClose = '`';
2012-04-10 14:06:34 -04:00
/**
* Connect to MySQL Database
*
* @codeCoverageIgnore
2012-04-10 14:06:34 -04:00
* @param string $dsn
* @param string $username
* @param string $password
* @param array $options
2012-04-10 14:06:34 -04:00
*/
2016-09-07 13:10:03 -04:00
public function __construct($dsn, $username=NULL, $password=NULL, array $options=[])
2012-04-10 14:06:34 -04:00
{
2014-02-11 14:38:08 -05:00
// Set the charset to UTF-8
2014-04-02 17:08:50 -04:00
if (defined('\\PDO::MYSQL_ATTR_INIT_COMMAND'))
{
2016-09-07 13:10:03 -04:00
$options = array_merge($options, [
2016-10-13 21:55:23 -04:00
PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES UTF-8 COLLATE 'UTF-8'",
2016-09-07 13:10:03 -04:00
]);
}
2015-11-11 09:25:21 -05:00
if (strpos($dsn, 'mysql') === FALSE)
{
$dsn = 'mysql:'.$dsn;
}
parent::__construct($dsn, $username, $password, $options);
2012-04-10 14:06:34 -04:00
}
2016-10-13 21:55:23 -04:00
}