We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46fcce5 commit 6e7c475Copy full SHA for 6e7c475
categories/cookbook/14database-access/14-09-dbi-sql.pl
@@ -29,12 +29,12 @@ END
29
my $st = $dbh.prepare('INSERT INTO video(title, uri) VALUES(?, ?)');
30
31
# put some data in
32
-
33
-$st.execute("Larry Wall - Keynote, APW2014 2014-10-10 ", "https://www.youtube.com/watch?v=enlqVqit62Y");
34
-$st.execute("Carl Mäsak - Regexes in Perl 6 - Zero to Perl 6 Training", "https://www.youtube.com/watch?v=oo-gA9Z9SaA");
+$st.execute("Larry Wall - Keynote, APW2014 2014-10-10 ",
+ "https://www.youtube.com/watch?v=enlqVqit62Y");
+$st.execute("Carl Mäsak - Regexes in Perl 6 - Zero to Perl 6 Training",
35
+ "https://www.youtube.com/watch?v=oo-gA9Z9SaA");
36
37
# get some data out
38
$st = $dbh.prepare('SELECT title,uri FROM video');
39
$st.execute;
40
0 commit comments