module Sequel::Postgres::Dataset::ArgumentMapper

PostgreSQL specific argument mapper used for mapping the named argument hash to a array with numbered arguments. Only used with the pg driver.

Protected Instance Methods

map_to_prepared_args(hash) click to toggle source

An array of bound variable values for this query, in the correct order.

    # File lib/sequel/adapters/postgres.rb
715 def map_to_prepared_args(hash)
716   prepared_args.map{|k| hash[k.to_sym]}
717 end