Module Sequel::Postgres::Dataset::ArgumentMapper
In: lib/sequel/adapters/postgres.rb

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

Methods

Included Modules

Sequel::Dataset::ArgumentMapper

Protected Instance methods

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

[Source]

     # File lib/sequel/adapters/postgres.rb, line 736
736:           def map_to_prepared_args(hash)
737:             prepared_args.map{|k| hash[k.to_sym]}
738:           end

[Validate]