コード例 #1
0
 public void GetConnection()
 {
     SQLite.Net.SQLiteConnection db = new SQLite.Net.SQLiteConnection(new SQLitePlatformIOS(), GetPath());
     db.DropTable <InputDataTable>();
     db.CreateTable <InputDataTable>();
     db.CreateTable <FlightDataTable>();
 }
コード例 #2
0
 void Setup()
 {
     _connection.CreateTable <Contact> ();
     _connection.DropTable <Quote> ();
     _connection.CreateTable <Quote> ();
 }