コード例 #1
0
ファイル: Query.php プロジェクト: hackergarage/ThaFrame
 public function getRows()
 {
     if (!isset($this->_rows)) {
         $this->_rows = $this->_DbConnection->getAllRows($this->_sql);
     }
     return $this->_rows;
 }
コード例 #2
0
ファイル: RowModel.php プロジェクト: hackergarage/ThaFrame
 public function getStructure()
 {
     $structure = $this->DbConnection->getAllRows("DESCRIBE {$this->table_name};");
     return $structure;
 }