class Sequel::JDBC::Dataset

Constants

PreparedStatementMethods
StoredProcedureMethods

Public Instance Methods

fetch_rows(sql, &block) click to toggle source
    # File lib/sequel/adapters/jdbc.rb
756 def fetch_rows(sql, &block)
757   execute(sql){|result| process_result_set(result, &block)}
758   self
759 end
with_convert_types(v) click to toggle source

Set whether to convert Java types to ruby types in the returned dataset.

    # File lib/sequel/adapters/jdbc.rb
767 def with_convert_types(v)
768   clone(:convert_types=>v)
769 end
with_fetch_size(size) click to toggle source

Set the fetch size on JDBC ResultSets created from the returned dataset.

    # File lib/sequel/adapters/jdbc.rb
762 def with_fetch_size(size)
763   clone(:fetch_size=>size)
764 end