Exemple #1
0
 /**
  * Fetch resultset to an array from the previous query as objects.
  *
  * @param DbResult $query
  *   The DbResult object that is being evaluated.
  * @return array
  *   Contain all rows data as objects from $query;
  *   if no record in $query, return an empty array
  */
 public function fetch_object_all(DbResult $query)
 {
     return $query->fetch_object_all();
 }