module Sequel::SQLite::Dataset::ArgumentMapper
Protected Instance Methods
Source
# 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
Return a hash with the same values as the given hash, but with the keys converted to strings.
Private Instance Methods
Source
# File lib/sequel/adapters/sqlite.rb 376 def prepared_arg(k) 377 LiteralString.new("#{prepared_arg_placeholder}#{k.to_s.gsub('.', '__')}") 378 end
SQLite
uses a : before the name of the argument for named arguments.