= Database patching for thread safety (Should be non-issue but could be in the future)

This commit is contained in:
Matthew Cech
2019-05-24 00:08:12 -07:00
parent 7fefa5f89c
commit 2ee17dcc79
2 changed files with 37 additions and 16 deletions
+4 -1
View File
@@ -40,7 +40,10 @@ public class DatabaseDriver
public boolean Connect()
{
driver = new JDBCDriverSQLite();
driver.Connect();
if(driver.Connect() == false)
{
return false;
}
// Verify tables we want to use exist
EnsureTableExists(globalTableName, globalKeyName, globalValueName); // General table. Do not remove.