Module Sequel::SQLite::Dataset::ArgumentMapper
In: lib/sequel/adapters/sqlite.rb

SQLite 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/sqlite.rb, line 136
136:         def map_to_prepared_args(hash)
137:           args = {}
138:           hash.each{|k,v| args[k.to_s] = v}
139:           args
140:         end

[Validate]