Help for this page

Select Code to Download


  1. or download this
    my $cd = Music::CD->find_or_create(
       { artist => "U2", title => "Boy" });
    
  2. or download this
        my @music = Music::CD->search_where(
            artist => [ ’Ozzy’, ’Kelly’ ],
            status => { ’!=’, ’outdated’ },
        );
    
  3. or download this
    @cds = Music::CD->search_like(
        title  => ’Hits%’, 
        artist => ’Various%’);
    
  4. or download this
    package Music::DBI;
    
    ...
        artistid  INTEGER   PRIMARY KEY,
        name      VARCHAR(255)
    );