getRowCount() public method

Returns the number of rows in this table.
public getRowCount ( ) : integer
return integer
コード例 #1
0
ファイル: QueryTable.php プロジェクト: ninodafonte/SIFO
 /**
  * Returns the number of rows in this table.
  *
  * @return int
  */
 public function getRowCount()
 {
     $this->loadData();
     return parent::getRowCount();
 }