mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
61 lines
2 KiB
PHP
61 lines
2 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Db;
|
|
|
|
abstract class PDOStatement extends AbstractStatement {
|
|
use PDOError;
|
|
|
|
protected const BINDINGS = [
|
|
self::T_INTEGER => \PDO::PARAM_INT,
|
|
self::T_FLOAT => \PDO::PARAM_STR,
|
|
self::T_DATETIME => \PDO::PARAM_STR,
|
|
self::T_BINARY => \PDO::PARAM_LOB,
|
|
self::T_STRING => \PDO::PARAM_STR,
|
|
self::T_BOOLEAN => \PDO::PARAM_INT, // FIXME: using \PDO::PARAM_BOOL leads to incompatibilities with versions of SQLite bundled prior to PHP 7.3
|
|
];
|
|
|
|
protected $st;
|
|
protected $db;
|
|
protected $query;
|
|
|
|
public function __construct(\PDO $db, string $query, array $bindings = []) {
|
|
$this->db = $db;
|
|
$this->query = $query;
|
|
$this->retypeArray($bindings);
|
|
}
|
|
|
|
protected function prepare(string $query): bool {
|
|
try {
|
|
// PDO statements aren't usually evaluated at creation, and so should not fail
|
|
$this->st = $this->db->prepare($query);
|
|
return true;
|
|
} catch (\PDOException $e) { // @codeCoverageIgnore
|
|
[$excClass, $excMsg, $excData] = $this->buildPDOException(); // @codeCoverageIgnore
|
|
throw new $excClass($excMsg, $excData); // @codeCoverageIgnore
|
|
}
|
|
}
|
|
|
|
public function __destruct() {
|
|
unset($this->st, $this->db);
|
|
}
|
|
|
|
public function runArray(array $values = []): Result {
|
|
$this->st->closeCursor();
|
|
$this->bindValues($values);
|
|
try {
|
|
$this->st->execute();
|
|
} catch (\PDOException $e) {
|
|
[$excClass, $excMsg, $excData] = $this->buildPDOException(true);
|
|
throw new $excClass($excMsg, $excData);
|
|
}
|
|
return new PDOResult($this->db, $this->st);
|
|
}
|
|
|
|
protected function bindValue($value, int $type, int $position): bool {
|
|
return $this->st->bindValue($position, $value, is_null($value) ? \PDO::PARAM_NULL : self::BINDINGS[$type]);
|
|
}
|
|
}
|