Пример #1
0
 /**
  * @return array
  */
 function AllTableNames()
 {
     $return = array();
     if (!$this->_connector->Execute($this->_commandCreator->AllTableNames())) {
         return false;
     }
     while (($array = $this->_connector->GetNextArrayRecord()) != false) {
         $tableName = '';
         foreach ($array as $value) {
             $tableName = $value;
             break;
         }
         if (strlen($tableName) > 0) {
             $return[] = $tableName;
         }
     }
     return $return;
 }