Sha256: a5b27b83a904404f2c7250a7073a9f6c61cbd85e24852404335a684493f78c93
Contents?: true
Size: 1.44 KB
Versions: 34
Compression:
Stored size: 1.44 KB
Contents
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 extend Sequel::Database::ResetIdentifierMangling 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_yield(sql){conn.execute(sql)}} conn end end end end end
Version data entries
34 entries across 34 versions & 2 rubygems