Allow clicking through to full quality images
[pics.git] / db.php
CommitLineData
cd757b9e
JC
1<?php
2
3function get_db($db_name = 'pics.db') {
4 $db = new SQLite3($db_name);
5 $db->exec('PRAGMA journal_mode=WAL;');
6 return $db;
7}
8