mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-24 07:28:07 -05:00
12 lines
174 B
PHP
12 lines
174 B
PHP
<?php
|
|
|
|
$databaseFile = 'db/wallos.db';
|
|
|
|
$db = new SQLite3($databaseFile);
|
|
$db->busyTimeout(5000);
|
|
|
|
if (!$db) {
|
|
die('Connection to the database failed.');
|
|
}
|
|
|
|
?>
|