Пример #1
0
 public function getRows()
 {
     if (!isset($this->_rows)) {
         $this->_rows = $this->_DbConnection->getAllRows($this->_sql);
     }
     return $this->_rows;
 }
Пример #2
0
 public function getStructure()
 {
     $structure = $this->DbConnection->getAllRows("DESCRIBE {$this->table_name};");
     return $structure;
 }