Exemple #1
0
 protected DbModule(SqliteDbInterface dbInterface, SqLiteDb db)
 {
     DbInterface    = dbInterface;
     Db             = db;
     AllColumnNames = new string[AllColumns.Length];
     for (int i = 0; i < AllColumns.Length; i++)
     {
         AllColumnNames[i] = AllColumns[i].Name;
     }
 }
 public DbObjectModule(SqliteDbInterface dbInterface, SqLiteDb db) : base(dbInterface, db)
 {
 }