public void OnApplicationSuspended()
 {
     Connection.Dispose();
     Connection = null;
 }
 public Entry(SQLiteConnectionString connectionString, SQLiteOpenFlags openFlags)
 {
     ConnectionString = connectionString;
     Connection       = new SQLiteConnectionWithLock(connectionString, openFlags);
 }