These comments are woefully outdated
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Manual / Example.pod
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/],