summaryrefslogtreecommitdiff
path: root/classes/db.php
blob: cc835b79daa5bca4d96de5085e56b70640e3b798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
class Db {
	private static $instance;
	private $pdo;

	private function __construct() {
		try {
			$this->pdo = new PDO(self::get_dsn());
		} catch (Exception $e) {
			die("Unable to initialize database driver (SQLite): $e");
		}
		//$this->dbh->busyTimeout(30*1000);
		$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
		$this->pdo->query('PRAGMA journal_mode = wal;');

		ORM::configure(self::get_dsn());
		ORM::configure('return_result_sets', true);
	}

	public static function get_dsn() {
		return Config::get(Config::DB_TYPE) . ':' . Config::get(Config::SCRATCH_DB);
	}

	public static function pdo() : PDO {
		if (self::$instance == null)
			self::$instance = new self();

		return self::$instance->pdo;
	}

};

?>