Method: HDB#updateValues

Defined in:
lib/hdb/hdb.rb

#updateValues(args) ⇒ Object



253
254
255
256
257
258
259
260
261
# File 'lib/hdb/hdb.rb', line 253

def updateValues(args) 

  return "" unless(args)
  args = self.quote(args)
  result = []
  args.each { |key, value| result << "\"#{key}\" = #{value}" }  
  return result.join(', ')

end