Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      { data_type => "INTEGER", is_nullable => 0, size => undef },
    );
    __PACKAGE__->set_primary_key("id");
    
  2. or download this
        --
        -- Create a very simple database to hold book and author informati
    +on
    ...
        INSERT INTO book_authors VALUES (4, 6);
        INSERT INTO book_authors VALUES (4, 7);
        INSERT INTO book_authors VALUES (5, 8);