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