Method: Sequel::IBMDB::Dataset#convert_smallint_to_bool

Defined in:
lib/sequel/adapters/ibmdb.rb

#convert_smallint_to_boolObject

Whether to convert smallint to boolean arguments for this dataset. Defaults to the Database setting.

[View source]

375
376
377
# File 'lib/sequel/adapters/ibmdb.rb', line 375

def convert_smallint_to_bool
  opts.has_key?(:convert_smallint_to_bool) ? opts[:convert_smallint_to_bool] : db.convert_smallint_to_bool
end