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

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 296
296:         def map_to_prepared_args(hash)
297:           args = {}
298:           hash.each{|k,v| args[k.to_s.gsub('.', '__')] = v}
299:           args
300:         end

[Validate]