wallos/includes/connect_endpoint.php
2023-10-05 22:39:37 +02:00

11 lines
178 B
PHP

<?php
$databaseFile = '../../db/wallos.db';
$db = new SQLite3($databaseFile);
$db->busyTimeout(5000);
if (!$db) {
die('Connection to the database failed.');
}
?>