$db=DDSMySQL->connect(...); $object=$db->{table_foo}->{id}=$bar; $object->{some_other_key}=$blah; $baz=$object->{baz}; $qux=$object->{qux}; ...etc... #### $object=$db->table_foo->id($bar); $object->some_other_key($blah); $baz=$object->baz; $qux=$object->qux; ...etc...