Sequel::JDBC::Dataset
Return clob as blob if use_clob_as_blob is true
# File lib/sequel/adapters/jdbc/db2.rb, line 68 def convert_type_proc(v) case v when JAVA_SQL_CLOB ::Sequel::DB2::use_clob_as_blob ? DB2_CLOB_METHOD : super else super end end