# Get an object that represents the remote table. # my $tbl = $storage->remote('Employee'); # Fetch Raoul and give him a raise. # my ($raoul) = $storage->select($tbl, $tbl->{name} eq 'Raoul Frodus'); $raoul->raise(5000); $storage->update($raoul);