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/adapters/sqlite.rb, line 147 147: def map_to_prepared_args(hash) 148: args = {} 149: hash.each{|k,v| args[k.to_s] = v} 150: args 151: end
[Validate]