Example #1
0
 /**
  * Create a Row Count Statement
  *
  * @param  int $affectedRows
  * @return Zend_Test_DbStatement
  */
 protected static function _createRowCountStatement($affectedRows)
 {
     $stmt = new self();
     $stmt->setRowCount($affectedRows);
     return $stmt;
 }