Skip to content

Commit 6e7c475

Browse files
committed
[cookbook] split lines for improved readability
1 parent 46fcce5 commit 6e7c475

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

categories/cookbook/14database-access/14-09-dbi-sql.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ END
2929
my $st = $dbh.prepare('INSERT INTO video(title, uri) VALUES(?, ?)');
3030
3131
# 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");
32+
$st.execute("Larry Wall - Keynote, APW2014 2014-10-10 ",
33+
"https://www.youtube.com/watch?v=enlqVqit62Y");
34+
$st.execute("Carl Mäsak - Regexes in Perl 6 - Zero to Perl 6 Training",
35+
"https://www.youtube.com/watch?v=oo-gA9Z9SaA");
3536
3637
# get some data out
37-
3838
$st = $dbh.prepare('SELECT title,uri FROM video');
3939
$st.execute;
4040

0 commit comments

Comments
 (0)