2017-12-19 22:15:05 +00:00
|
|
|
<?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;
|
|
|
|
|
|
|
|
trait PDOError {
|
2019-01-11 00:01:32 +00:00
|
|
|
use SQLState;
|
|
|
|
|
|
|
|
protected function buildPDOException(bool $statementError = false): array {
|
2018-12-21 17:35:10 +00:00
|
|
|
if ($statementError) {
|
2017-12-19 22:15:05 +00:00
|
|
|
$err = $this->st->errorInfo();
|
|
|
|
} else {
|
|
|
|
$err = $this->db->errorInfo();
|
|
|
|
}
|
2019-01-11 15:38:06 +00:00
|
|
|
if ($err[0] === "HY000") {
|
2019-01-11 00:01:32 +00:00
|
|
|
return static::buildEngineException($err[1], $err[2]);
|
|
|
|
} else {
|
|
|
|
return static::buildStandardException($err[0], $err[2]);
|
2017-12-19 22:15:05 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-22 16:51:58 +00:00
|
|
|
}
|