class Sequel::JDBC::Postgres::Dataset
Constants
- ARRAY_TYPE
- HSTORE_METHOD
Return PostgreSQL hstore types as ruby Hashes instead of Java HashMaps. Only used if the database does not have a conversion proc for the type.
- INTEGER_TYPE
- PG_SPECIFIC_TYPES
- STRING_TYPE
Public Instance Methods
with_fetch_size(size)
click to toggle source
Warn when calling as the fetch size is ignored by the JDBC
adapter currently.
Calls superclass method
Sequel::JDBC::Dataset#with_fetch_size
# File lib/sequel/adapters/jdbc/postgresql.rb 185 def with_fetch_size(size) 186 warn("Sequel::JDBC::Postgres::Dataset#with_fetch_size does not currently have an effect.", :uplevel=>1) 187 super 188 end