in reply to Class::DBI Intro
A number of things I'd be curious to see added:
Music::CD->has_many(styles => [ 'Music::StyleRef' => 'style' ]);
is identical to
Music::CD->has_many(_style_refs => 'Music::StyleRef'); sub styles { my $self = shift; return map $_->style, $self->_style_refs; }
(but note that your join table still requires a primary key)
Good stuff,
Matt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Class::DBI Intro
by salvadors (Pilgrim) on Aug 01, 2003 at 07:58 UTC | |
by mojotoad (Monsignor) on Aug 01, 2003 at 19:06 UTC |