PostgreSQL specific argument mapper used for mapping the named argument hash to a array with numbered arguments. Only used with the pg driver.
Included modules
- Sequel::Dataset::ArgumentMapper
Protected Instance methods
map_to_prepared_args(hash)
An array of bound variable values for this query, in the correct order.
[show source]
# File lib/sequel/adapters/postgres.rb 715 def map_to_prepared_args(hash) 716 prepared_args.map{|k| hash[k.to_sym]} 717 end