SQLite already supports named bind arguments, so use directly.
Return a hash with the same values as the given hash, but with the keys converted to strings.
[Source]
# File lib/sequel_core/adapters/sqlite.rb, line 148 148: def map_to_prepared_args(hash) 149: args = {} 150: hash.each{|k,v| args[k.to_s] = v} 151: args 152: end
[Validate]