class Sequel::JDBC::Dataset

def fetch_rows(sql, &block)

Correctly return rows from the database and return them as hashes.
def fetch_rows(sql, &block)
  execute(sql){|result| process_result_set(result, &block)}
  self
end