示例#1
0
 public TableCache GetTableCache()
 {
     if (this._tblCache == null)
         this._tblCache = new TableCache(this);
     return this._tblCache;
 }
示例#2
0
 public Database(SQLConsole.Data.LLDBA databaseProvider)
 {
     this._dbProvider = databaseProvider;
     if(this._dbProvider.svrinfo._server != null)
         this._tblCache = new TableCache(this);
 }