module Sequel::TinyTDS::Dataset::ArgumentMapper
Protected Instance Methods
map_to_prepared_args(hash)
click to toggle source
# File lib/sequel/adapters/tinytds.rb 199 def map_to_prepared_args(hash) 200 args = {} 201 hash.each{|k,v| args[k.to_s.gsub('.', '__')] = v} 202 args 203 end