class Sequel::JDBC::SqlAnywhere::Dataset

Dataset class for Sybase datasets accessed via JDBC.

Constants

SMALLINT_TYPE

Private Instance Methods

type_convertor(map, meta, type, i) click to toggle source
Calls superclass method Sequel::JDBC::Dataset#type_convertor
# File lib/sequel/adapters/jdbc/sqlanywhere.rb, line 72
def type_convertor(map, meta, type, i)
  if convert_smallint_to_bool && type == SMALLINT_TYPE
    map[:SqlAnywhereBoolean]
  else
    super
  end
end