Exemplo n.º 1
0
 /**
  * Load Table Names
  *
  * Looks at the DB and produces an array of valid table names.
  *
  * @return void
  */
 private function _loadTableNames()
 {
     if ($this->_cache && ($tableNames = $this->_cache->load('rsc_simpledb_tablenames'))) {
         $this->_tableNames = $tableNames;
     }
     $this->_tableNames = $this->_db->listTables();
     if ($this->_cache) {
         $this->_saveTableNamesCache();
     }
 }