Updates the database with multiple values
from the specified object. Takes any object which implements the each_pair method, including Hash and DBM objects.
static VALUE
fdbm_update(VALUE obj, VALUE other)
{
rb_block_call(other, rb_intern("each_pair"), 0, 0, update_i, obj);
return obj;
}