summaryrefslogtreecommitdiff
path: root/vendor/PicoDb/Drivers
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-03-30 19:53:59 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-03-30 19:53:59 -0400
commitd9dfd9d6199b15eba9510ef460e18c9245d9ab12 (patch)
tree6704134700cbc80c39b289620917d4bec011998e /vendor/PicoDb/Drivers
parent34711f584651205cb6738b49df285d93a35393b5 (diff)
Add Mysql/MariaDB support
Diffstat (limited to 'vendor/PicoDb/Drivers')
-rw-r--r--vendor/PicoDb/Drivers/Mysql.php76
-rw-r--r--vendor/PicoDb/Drivers/Sqlite.php17
2 files changed, 89 insertions, 4 deletions
diff --git a/vendor/PicoDb/Drivers/Mysql.php b/vendor/PicoDb/Drivers/Mysql.php
new file mode 100644
index 00000000..22277a01
--- /dev/null
+++ b/vendor/PicoDb/Drivers/Mysql.php
@@ -0,0 +1,76 @@
+<?php
+
+namespace PicoDb;
+
+class Mysql extends \PDO {
+
+ 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])) {
+ throw new \LogicException('This configuration parameter is missing: "'.$attribute.'"');
+ }
+ }
+
+ $dsn = 'mysql:host='.$settings['hostname'].';dbname='.$settings['database'];
+ $options = array(
+ \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES '.$settings['charset']
+ );
+
+ 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();
+ $result = $rq->fetch(\PDO::FETCH_ASSOC);
+
+ 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)
+ {
+ if (strpos($value, '.') !== false) return $value;
+ return '`'.$value.'`';
+ }
+} \ No newline at end of file
diff --git a/vendor/PicoDb/Drivers/Sqlite.php b/vendor/PicoDb/Drivers/Sqlite.php
index 6555e73d..83b61c40 100644
--- a/vendor/PicoDb/Drivers/Sqlite.php
+++ b/vendor/PicoDb/Drivers/Sqlite.php
@@ -5,9 +5,19 @@ namespace PicoDb;
class Sqlite extends \PDO {
- public function __construct($filename)
+ public function __construct(array $settings)
{
- parent::__construct('sqlite:'.$filename);
+ $required_atttributes = array(
+ 'filename',
+ );
+
+ foreach ($required_atttributes as $attribute) {
+ if (! isset($settings[$attribute])) {
+ throw new \LogicException('This configuration parameter is missing: "'.$attribute.'"');
+ }
+ }
+
+ parent::__construct('sqlite:'.$settings['filename']);
$this->exec('PRAGMA foreign_keys = ON');
}
@@ -20,8 +30,7 @@ class Sqlite extends \PDO {
$result = $rq->fetch(\PDO::FETCH_ASSOC);
if (isset($result['user_version'])) {
-
- return $result['user_version'];
+ return (int) $result['user_version'];
}
return 0;