Beispiel #1
0
    private static void createConnection()
    {
        try
        {
            if (!System.IO.File.Exists(Application.dataPath + "mainDb.sqlite"))
            {
                // db seed will create a new database with tables
                DBSeed seed = new DBSeed(connectionString);
                seed.resetDatabase();

                Debug.LogWarning("Database not found. Creating a new one. This leads to a complete loss of data.");
            }
            dbConnection = new SqliteConnection(connectionString);
            dbConnection.Open();
        }
        catch (Exception e)
        {
            Debug.LogError(e);
        }
    }