Top Level Namespace
Defined Under Namespace
Instance Method Summary collapse
Instance Method Details
#convert_value(v) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/rusql.rb', line 16 def convert_value(v) case v when String "'#{v}'" when Date v.strftime("'%Y-%m-%d'") when DateTime, Time v.strftime("'%Y-%m-%d %H:%M:%S'") else v.to_s end end |