These comments are woefully outdated
Peter Rabbitson [Mon, 26 Aug 2013 11:58:22 +0000 (13:58 +0200)]
Setting DBIC_TRACE=1 won't help either - we use the fast-path insert which
mean the user won't see anything

examples/Schema/insertdb.pl
lib/DBIx/Class/Manual/Example.pod

index 15bf71b..57cf5a1 100755 (executable)
@@ -7,10 +7,6 @@ use MyApp::Schema;
 
 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/],
index e41945b..432b292 100644 (file)
@@ -137,10 +137,6 @@ insertdb.pl
 
   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/],