Help for this page

Select Code to Download


  1. or download this
        package Role;
            Role->table('role');
    ...
            Film->table('film');
            Film->columns(All => qw/id title rating/);
            Film->has_many(stars => [ Role => 'actor' ]);
    
  2. or download this
    $film = Film->search(title => 'Jaws');
    $film->stars;
    
  3. or download this
    $stars = Film->search(title => 'Jaws')->stars;