2018-11-29 18:45:37 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 15:17:01 +00:00
|
|
|
|
2018-11-29 18:45:37 +00:00
|
|
|
namespace JKingWeb\Arsse\Db\PostgreSQL;
|
|
|
|
|
2020-11-03 22:52:20 +00:00
|
|
|
use JKingWeb\Arsse\Db\Result;
|
|
|
|
|
2019-01-11 00:01:32 +00:00
|
|
|
class PDOStatement extends \JKingWeb\Arsse\Db\PDOStatement {
|
2018-12-21 17:35:10 +00:00
|
|
|
public static function mungeQuery(string $query, array $types, ...$extraData): string {
|
|
|
|
return Statement::mungeQuery($query, $types, false);
|
2018-11-29 18:45:37 +00:00
|
|
|
}
|
2019-01-11 00:01:32 +00:00
|
|
|
|
2019-01-15 13:58:11 +00:00
|
|
|
/** @codeCoverageIgnore */
|
2019-01-11 00:01:32 +00:00
|
|
|
public static function buildEngineException($code, string $msg): array {
|
|
|
|
// PostgreSQL uses SQLSTATE exclusively, so this is not used
|
|
|
|
return [];
|
|
|
|
}
|
2020-11-03 22:52:20 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2018-11-29 18:45:37 +00:00
|
|
|
}
|