Get rid of pragma that had been testing for sqlite, a=chris

Chris Pollett [2022-12-15 23:Dec:th]
Get rid of pragma that had been testing for sqlite, a=chris
Filename
src/models/datasources/Sqlite3Manager.php
diff --git a/src/models/datasources/Sqlite3Manager.php b/src/models/datasources/Sqlite3Manager.php
index 741ef94c2..cae3eafad 100644
--- a/src/models/datasources/Sqlite3Manager.php
+++ b/src/models/datasources/Sqlite3Manager.php
@@ -87,7 +87,6 @@ class Sqlite3Manager extends PdoManager
         $this->connect_string = "$db_host:$db_user:$db_password:$db_name";
         if (empty(self::$active_connections[$this->connect_string])) {
             $this->pdo = new \PDO($connect);
-            $this->pdo->exec("PRAGMA busy_timeout=30000");
         } else {
             $this->pdo = self::$active_connections[$this->connect_string];
         }
ViewGit