Esempio n. 1
0
 /**
  * Return a single column from the next row of a ResultSet
  *
  * @param integer|optional $column_number
  *   Position of the column to fetch
  *
  * @return string|boolean
  *   The next column value of a ResultSet or FALSE if there are no more rows
  */
 public function fetchColumn($column_number = 0)
 {
     return $this->adapter->fetchColumn($column_number);
 }