# return an object representing the "remote" object, ie the # one in the object store my $remote_customer = $db->remote("Customer"); # get all customers whose name is like ?Wall my (@objs) = $db->select( $remote_customer, $remote_customer->{name}->like("?Wall") ); # set the first one's balance to 10000 $obj[0]->{balance} = 10000; $db->store($obj[0]);