Beispiel #1
0
 /**
  * Return an array containing all of the ResultSet rows
  *
  * @param integer|optional $fetch_style
  *   Fetch mode for this fetch operation
  *
  * @param mixed|optional $fetch_argument
  *   Complementary argument to Fetch Style
  *
  * @param array|optional $ctor_args
  *
  *   <p>Arguments passed to a Class Constructor.</p>
  *
  *   <p>
  *     Used only when <strong>$fetch_Style</strong> is
  *     <em>PDO::FETCH_CLASS</em>
  *   </p>
  *
  * @return array|stdClass|boolean
  *   An array or an stdClass object on success, depending
  *   on <strong>$style</strong> argument and FALSE otherwise
  */
 public function fetchAll($fetch_style = NULL, $fetch_argument = NULL, $ctor_args = NULL)
 {
     return $this->adapter->fetchAll($fetch_style);
 }