module Sequel::TinyTDS::Dataset::ArgumentMapper
def map_to_prepared_args(hash)
Return a hash with the same values as the given hash,
def map_to_prepared_args(hash) args = {} hash.each{|k,v| args[k.to_s.gsub('.', '__')] = v} args end
def prepared_arg(k)
SQLite uses a : before the name of the argument for named
def prepared_arg(k) LiteralString.new("@#{k.to_s.gsub('.', '__')}") end
def prepared_arg?(k)
def prepared_arg?(k) true end