2019-01-12 17:43:06 +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
|
|
|
|
2019-08-25 17:19:11 +00:00
|
|
|
namespace JKingWeb\Arsse\Test\DatabaseDrivers;
|
2019-01-12 17:43:06 +00:00
|
|
|
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
|
|
|
|
|
|
trait SQLite3PDO {
|
2022-01-11 22:54:02 +00:00
|
|
|
use SQLite3Common;
|
|
|
|
|
2019-01-12 17:43:06 +00:00
|
|
|
protected static $implementation = "PDO SQLite 3";
|
|
|
|
protected static $backend = "SQLite 3";
|
|
|
|
protected static $dbResultClass = \JKingWeb\Arsse\Db\PDOResult::class;
|
|
|
|
protected static $dbStatementClass = \JKingWeb\Arsse\Db\SQLite3\PDOStatement::class;
|
|
|
|
protected static $dbDriverClass = \JKingWeb\Arsse\Db\SQLite3\PDODriver::class;
|
|
|
|
protected static $stringOutput = true;
|
2020-03-01 20:16:50 +00:00
|
|
|
|
2019-01-12 17:43:06 +00:00
|
|
|
public static function dbInterface() {
|
|
|
|
try {
|
2022-01-11 22:54:02 +00:00
|
|
|
$d = new \PDO("sqlite:".Arsse::$conf->dbSQLite3File, "", "", [
|
|
|
|
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
|
|
|
\PDO::ATTR_STRINGIFY_FETCHES => true,
|
|
|
|
]);
|
2019-01-12 17:43:06 +00:00
|
|
|
$d->exec("PRAGMA busy_timeout=0");
|
|
|
|
return $d;
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|