Example #1
0
 public void CreateTable(Type type, SQLite.Net.Interop.CreateFlags flag = SQLite.Net.Interop.CreateFlags.None)
 {
     dbConnection.CreateTable(type, flag);
 }
Example #2
0
 public void CreateTable <T>(SQLite.Net.Interop.CreateFlags flag = SQLite.Net.Interop.CreateFlags.None)
 {
     dbConnection.CreateTable <T>(flag);
 }