module Sequel::SQLite::Dataset::ArgumentMapper

Protected Instance Methods

map_to_prepared_args(hash) click to toggle source

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

    # File lib/sequel/adapters/sqlite.rb
366 def map_to_prepared_args(hash)
367   args = {}
368   hash.each{|k,v| args[k.to_s.gsub('.', '__')] = v}
369   args
370 end