Included modules
- Sequel::Dataset::ArgumentMapper
Protected Instance methods
map_to_prepared_args(hash)
[show 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