Exemple #1
0
 public JsonStore()
 {
     this.DecideTableName();
     Database   = new JsonDbCore();
     IsFlushing = false;
     this.TryLoadData();
 }
Exemple #2
0
 public JsonStore(string dbDirectory, string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbDirectory, dbName);
     this.TableName = tableName;
     IsFlushing     = false;
     this.TryLoadData();
 }
Exemple #3
0
 public JsonStore(string tableName)
 {
     this.TableName = tableName;
     Database       = new JsonDbCore();
     IsFlushing     = false;
     this.TryLoadData();
 }
Exemple #4
0
 public JsonStore(string dbName, string tableName)
 {
     Database       = new JsonDbCore(dbName);
     this.TableName = tableName;
     this.TryLoadData();
 }
Exemple #5
0
 public JsonStore(JsonDbCore dbCore)
 {
     this.DecideTableName();
     Database = dbCore;
     this.TryLoadData();
 }
Exemple #6
0
 public JsonStore()
 {
     this.DecideTableName();
     Database = new JsonDbCore();
     this.TryLoadData();
 }