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 151
151:         def map_to_prepared_args(hash)
152:           args = {}
153:           hash.each{|k,v| args[k.to_s] = v}
154:           args
155:         end

[Validate]