Updates the database with multiple values from the specified object. Takes
any object which implements the each_pair method, including Hash and DBM objects.
Returns self.
# File lib/yaml/dbm.rb, line 187
def update( hsh )
hsh.keys.each do |k|
self.store( k, hsh.fetch( k ) )
end
self
end