2014-09-15 13:23:55 +02:00
|
|
|
<?php
|
|
|
|
|
2014-12-24 03:28:26 +01:00
|
|
|
namespace PicoDb\Driver;
|
2014-09-15 13:23:55 +02:00
|
|
|
|
2014-12-24 03:28:26 +01:00
|
|
|
use PDO;
|
|
|
|
use LogicException;
|
2014-09-15 13:23:55 +02:00
|
|
|
|
2014-12-24 03:28:26 +01:00
|
|
|
class Mysql extends PDO
|
|
|
|
{
|
2014-09-15 13:23:55 +02:00
|
|
|
private $schema_table = 'schema_version';
|
|
|
|
|
|
|
|
public function __construct(array $settings)
|
|
|
|
{
|
|
|
|
$required_atttributes = array(
|
|
|
|
'hostname',
|
|
|
|
'username',
|
|
|
|
'password',
|
|
|
|
'database',
|
|
|
|
'charset',
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($required_atttributes as $attribute) {
|
|
|
|
if (! isset($settings[$attribute])) {
|
2014-12-24 03:28:26 +01:00
|
|
|
throw new LogicException('This configuration parameter is missing: "'.$attribute.'"');
|
2014-09-15 13:23:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-24 03:28:26 +01:00
|
|
|
$dsn = 'mysql:host='.$settings['hostname'].';dbname='.$settings['database'].';charset='.$settings['charset'];
|
|
|
|
|
2014-09-15 13:23:55 +02:00
|
|
|
$options = array(
|
2014-12-24 03:28:26 +01:00
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET sql_mode = STRICT_ALL_TABLES',
|
2014-09-15 13:23:55 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
parent::__construct($dsn, $settings['username'], $settings['password'], $options);
|
|
|
|
|
|
|
|
if (isset($settings['schema_table'])) {
|
|
|
|
$this->schema_table = $settings['schema_table'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function getSchemaVersion()
|
|
|
|
{
|
|
|
|
$this->exec("CREATE TABLE IF NOT EXISTS `".$this->schema_table."` (`version` INT DEFAULT '0')");
|
|
|
|
|
|
|
|
$rq = $this->prepare('SELECT `version` FROM `'.$this->schema_table.'`');
|
|
|
|
$rq->execute();
|
2014-12-24 03:28:26 +01:00
|
|
|
$result = $rq->fetch(PDO::FETCH_ASSOC);
|
2014-09-15 13:23:55 +02:00
|
|
|
|
|
|
|
if (isset($result['version'])) {
|
|
|
|
return (int) $result['version'];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->exec('INSERT INTO `'.$this->schema_table.'` VALUES(0)');
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function setSchemaVersion($version)
|
|
|
|
{
|
|
|
|
$rq = $this->prepare('UPDATE `'.$this->schema_table.'` SET `version`=?');
|
|
|
|
$rq->execute(array($version));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function getLastId()
|
|
|
|
{
|
|
|
|
return $this->lastInsertId();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function escapeIdentifier($value)
|
|
|
|
{
|
|
|
|
return '`'.$value.'`';
|
|
|
|
}
|
|
|
|
}
|