コード例 #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();
 }