Module | Sequel::JDBC::Postgres::DatabaseMethods |
In: |
lib/sequel/adapters/jdbc/postgresql.rb
|
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/postgresql.rb, line 43 43: def self.extended(db) 44: db.instance_eval do 45: @primary_keys = {} 46: @primary_key_sequences = {} 47: end 48: end
Return instance of Sequel::JDBC::Postgres::Dataset with the given opts.
# File lib/sequel/adapters/jdbc/postgresql.rb, line 51 51: def dataset(opts=nil) 52: Sequel::JDBC::Postgres::Dataset.new(self, opts) 53: end