Sha256: ed6008ce4cd3cd189c7931b134373b882bdbbeb4196cd58bab726d64eb3e8eda
Contents?: true
Size: 1.43 KB
Versions: 11
Compression:
Stored size: 1.43 KB
Contents
# frozen-string-literal: true require 'swift/db/postgres' Sequel.require 'adapters/shared/postgres' module Sequel Postgres::CONVERTED_EXCEPTIONS << ::Swift::Error module Swift # Adapter, Database, and Dataset support for accessing a PostgreSQL # database via Swift. module Postgres # Methods to add to Database instances that access PostgreSQL via Swift. module DatabaseMethods include Sequel::Postgres::DatabaseMethods # Add the primary_keys and primary_key_sequences instance variables, # so we can get the correct return values for inserted rows. def self.extended(db) super db.send(:initialize_postgres_adapter) end private # Remove all other options except for ones specifically handled, as # otherwise swift passes them to dbic++ which passes them to PostgreSQL # which can raise an error. def server_opts(o) o = super so = {} [:db, :user, :password, :host, :port].each{|s| so[s] = o[s] if o.has_key?(s)} so end # Extend the adapter with the Swift PostgreSQL AdapterMethods. def setup_connection(conn) conn = super(conn) conn.native_bind_format = true connection_configuration_sqls.each{|sql| log_connection_yield(sql, conn){conn.execute(sql)}} conn end end end end end
Version data entries
11 entries across 9 versions & 2 rubygems