Module Sequel::Oracle::Dataset::ArgumentMapper
In: lib/sequel/adapters/oracle.rb

Oracle already supports named bind arguments, so use directly.

Methods

Included Modules

Sequel::Dataset::ArgumentMapper

Protected Instance methods

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

[Source]

     # File lib/sequel/adapters/oracle.rb, line 330
330:         def map_to_prepared_args(bind_vars)
331:           prepared_args.map{|v, t| [bind_vars[v], t]}
332:         end

[Validate]