Setting DBIC_TRACE=1 won't help either - we use the fast-path insert which
mean the user won't see anything
my $schema = MyApp::Schema->connect('dbi:SQLite:db/example.db');
-# here's some of the sql that is going to be generated by the schema
-# INSERT INTO artist VALUES (NULL,'Michael Jackson');
-# INSERT INTO artist VALUES (NULL,'Eminem');
-
my @artists = (['Michael Jackson'], ['Eminem']);
$schema->populate('Artist', [
[qw/name/],
my $schema = MyApp::Schema->connect('dbi:SQLite:db/example.db');
- # here's some of the SQL that is going to be generated by the schema
- # INSERT INTO artist VALUES (NULL,'Michael Jackson');
- # INSERT INTO artist VALUES (NULL,'Eminem');
-
my @artists = (['Michael Jackson'], ['Eminem']);
$schema->populate('Artist', [
[qw/name/],