2016-10-06 02:08:43 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\NewsSync\Db;
|
|
|
|
|
|
|
|
class DriverSQLite3 implements Driver {
|
2017-02-16 20:29:42 +00:00
|
|
|
use CommonPDO, CommonSQLite3;
|
|
|
|
|
|
|
|
protected $db;
|
|
|
|
|
|
|
|
private function __construct(\JKingWeb\NewsSync\RuntimeData $data, bool $install = false) {
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
2016-10-06 02:08:43 +00:00
|
|
|
|
2017-02-16 20:29:42 +00:00
|
|
|
public function __destruct() {
|
|
|
|
// FIXME: stub
|
|
|
|
}
|
2016-10-06 02:08:43 +00:00
|
|
|
|
2017-02-16 20:29:42 +00:00
|
|
|
static public function create(\JKingWeb\NewsSync\RuntimeData $data, bool $install = false): Driver {
|
|
|
|
// check to make sure required extensions are loaded
|
|
|
|
if(class_exists("PDO") && in_array("sqlite",\PDO::getAvailableDrivers())) {
|
|
|
|
return new self($data, $install);
|
|
|
|
} else if(class_exists("SQLite3")) {
|
|
|
|
return new DriverSQLite3($data, $install);
|
|
|
|
} else {
|
|
|
|
throw new Exception("extMissing", self::driverName());
|
|
|
|
}
|
|
|
|
}
|
2016-10-06 02:08:43 +00:00
|
|
|
}
|