Add the primary_keys and primary_key_sequences instance variables, so we can get the correct return values for inserted rows.
# File lib/sequel/adapters/jdbc/fdbsql.rb, line 27 def self.extended(db) super db.send(:adapter_initialize) end
# File lib/sequel/adapters/jdbc/fdbsql.rb, line 39 def database_exception_sqlstate(exception, opts) if exception.respond_to?(:sql_state) exception.sql_state end end
# File lib/sequel/adapters/jdbc/fdbsql.rb, line 35 def disconnect_error?(exception, opts) super || exception.message =~ DISCONNECT_ERROR_RE end