Module: Sequel::JDBC::Fdbsql::DatabaseMethods

Extended by:
Database::ResetIdentifierMangling
Includes:
Fdbsql::DatabaseMethods
Defined in:
lib/sequel/adapters/jdbc/fdbsql.rb

Overview

Methods to add to Database instances that access Fdbsql via JDBC.

Instance Attribute Summary

Attributes included from Fdbsql::DatabaseMethods

#conversion_procs

Class Method Summary collapse

Methods included from Database::ResetIdentifierMangling

extended

Methods included from Fdbsql::DatabaseMethods

#bound_variable_arg, #database_type, #foreign_key_list, #global_index_namespace?, #indexes, #primary_key, #serial_primary_key_options, #supports_create_table_if_not_exists?, #supports_deferrable_foreign_key_constraints?, #supports_drop_table_if_exists?, #tables, #views

Class Method Details

.extended(db) ⇒ Object

Add the primary_keys and primary_key_sequences instance variables, so we can get the correct return values for inserted rows.



27
28
29
30
# File 'lib/sequel/adapters/jdbc/fdbsql.rb', line 27

def self.extended(db)
  super
  db.send(:adapter_initialize)
end