Exemplo n.º 1
0
        internal Table(TableDb tdb, ScalableDb db, string table)
        {
            tableName = Encoding.UTF8.GetBytes(table + "_");
            this.db   = db;
            name      = table;
            this.tdb  = tdb;
            switch (table)
            {
            case "__tables":
                initialized = true;
                break;

            default:
                break;
            }
        }
Exemplo n.º 2
0
 public TableDb(ScalableDb db)
 {
     this.db = db;
 }