1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

DBD-SQLite: added indent not to be misunderstood as two consecutive verbatim sections

This commit is contained in:
Kenichi Ishigaki 2009-06-19 16:15:46 +00:00
parent 589bdc1f6c
commit fa40ab7df7

View file

@ -863,7 +863,7 @@ There are two workarounds for this.
As shown above in the C<BLOB> section, you can always use C<bind_param()> to tell the type of a bind value.
use DBI qw(:sql_types); # Don't forget this
my $sth = $dbh->prepare(q{
SELECT bar FROM foo GROUP BY bar HAVING count(*) > ?;
});