Am Freitag, 1. August 2003 02:53 schrieb Joshua Spoerri:
> Is it possible to chain Linked tables?
>
> I would like to do $A{-B}{-C}{someFieldOnC} but the link from table B to
> table C is not automatically detectable.
>

There are some limitation in the implementation of Perl  tied hashes, so you 
have to write

$b = $A{-B} ;
$c = $b -> {-C} ;
$c -> {someFieldsOnC} ;

That's a problem of Perl itself not of DBIx::Recodrset

Gerald


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to