alert("Error connecting to database, will try in 3s")'; sleep(3); return SQLite3_connect(false); } } } //------------------------------------------------------------------------------ // Open DB //------------------------------------------------------------------------------ function OpenDB (...$DBPath) { global $DBFILE; global $db; // use custom path if supplied foreach ($DBPath as $path) { $DBFILE = $path; } if(strlen($DBFILE) == 0) { echo ''; die ('
Database not available
'); } $db = SQLite3_connect(true); if(!$db) { echo ''; die ('
Error connecting to the database
'); } $db->exec('PRAGMA journal_mode = wal;'); } // # Open DB once and keep open // # Opening / closing DB frequently actually casues more issues OpenDB (); // main