예제 #1
0
파일: JsonStore.cs 프로젝트: iotspace/biggy
 public JsonStore()
 {
     this.DecideTableName();
     Database   = new JsonDbCore();
     IsFlushing = false;
     this.TryLoadData();
 }
예제 #2
0
파일: JsonStore.cs 프로젝트: iotspace/biggy
 public JsonStore(string dbDirectory, string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbDirectory, dbName);
     this.TableName = tableName;
     IsFlushing     = false;
     this.TryLoadData();
 }
예제 #3
0
파일: JsonStore.cs 프로젝트: iotspace/biggy
 public JsonStore(string tableName)
 {
     this.TableName = tableName;
     Database       = new JsonDbCore();
     IsFlushing     = false;
     this.TryLoadData();
 }
예제 #4
0
파일: JsonStore.cs 프로젝트: cezary12/kokos
 public JsonStore(string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbName);
     this.TableName = tableName;
     this.TryLoadData();
 }
예제 #5
0
파일: JsonStore.cs 프로젝트: cezary12/kokos
 public JsonStore(JsonDbCore dbCore)
 {
     this.DecideTableName();
     Database = dbCore;
     this.TryLoadData();
 }
예제 #6
0
파일: JsonStore.cs 프로젝트: cezary12/kokos
 public JsonStore()
 {
     this.DecideTableName();
     Database = new JsonDbCore();
     this.TryLoadData();
 }