Help for this page

Select Code to Download


  1. or download this
    -- I have an animal table describing species
    create table myschema.animal (
    ...
       max_wingspan number,
       number_of_eggs number
    );
    
  2. or download this
    my $dog = $schema->resultset('Mammal')->find('Canis familiaris');
    warn $dog->region, ' ', $dog->max_height;
    ...
       'region'  => 'Africa',
       'quadrupedal' => 0,
    });