Help for this page

Select Code to Download


  1. or download this
    # To your authors class
    __PACKAGE__->has_many('books', 'My::DB::Books' => book_id);
    
    # To your books class
    __PACKAGE__->has_a('author_id', 'My::DB::Authors');
    
  2. or download this
    my $author = My::DB::Authors->retrieve($author_id);
    
    ...
    while (my $book = $books->next) {
      ...
    }