module Sequel::Oracle::Dataset::ArgumentMapper

  1. lib/sequel/adapters/oracle.rb
Parent: Dataset

Oracle already supports named bind arguments, so use directly.

Methods

Protected Instance

  1. map_to_prepared_args

Included modules

  1. Sequel::Dataset::ArgumentMapper

Protected Instance methods

map_to_prepared_args (bind_vars)

Return a hash with the same values as the given hash, but with the keys converted to strings.

[show source]
# File lib/sequel/adapters/oracle.rb, line 328
def map_to_prepared_args(bind_vars)
  prepared_args.map{|v, t| [bind_vars[v], t]}
end