- or download this
create table venue (
venue_id integer not null auto_increment primary key,
venue_name varchar(30) not null
);
- or download this
package venue;
use strict;
...
}
1;
- or download this
my $obj2 = create venue(db=>$dbh);
- or download this
$obj2->set({venue_name=>'My New Venue'});
$obj2->commit();
- or download this
A value is required for venue_id in row 0 in order to commit
- or download this
$obj2->set(change=>{ venue_name => 'newVenue',
venue_id=>$new_id});
$obj2->commit();
- or download this
Attempt to modify immutable column: venue_id