Exemplo n.º 1
0
 /**
  * Fetch the next row from a ResultSet
  *
  * @param integer|optional $fetch_style
  *   Fetch mode for this fetch operation
  *
  * @param integer|optional $cursor_orientation
  *   Determines which row will be returned to the caller
  *
  * @param integer|optional $cursor_offset
  *   Controls the cursor orientation
  *
  * @return array|stdClass|boolean
  *   An array or an stdClass object on success, depending
  *   on <strong>$style</strong> argument and FALSE otherwise
  */
 public function fetch($fetch_style = null, $cursor_orientation = null, $cursor_offset = null)
 {
     return $this->adapter->fetch($fetch_style);
 }