@@ -283,7 +283,7 @@ Delimited identifiers (table and column names *with* quotes around them) are
283
283
case SENSITIVE so column "foo", "fOo", "FOO" each refer to different columns.
284
284
285
285
A delimited identifier is *never* equal to a regular identifier (so "foo" and
286
- foo are two different columns). But don't do that :-).
286
+ foo are two different columns). But do not do that :-).
287
287
288
288
Remember thought that, in L<DBD::CSV> if table names are used directly as file
289
289
names, the case sensitivity depends on the OS e.g. on Windows files named foo,
@@ -373,7 +373,7 @@ are exactly the same:
373
373
my $sth = $dbh->prepare(" SELECT * FROM RUN( 'query.sql' ) ");
374
374
375
375
If the file contains a statement with placeholders, the values for the
376
- placehoders can be passed in the call to $sth->execute() as normal. If the
376
+ placeholders can be passed in the call to $sth->execute() as normal. If the
377
377
query.sql file contains "SELECT id,name FROM x WHERE id=?", then these
378
378
two are the same:
379
379
@@ -402,7 +402,7 @@ Syntax obvious
402
402
403
403
Surrounded by either single quotes; some characters need to
404
404
be escaped with a backslash, in particular the backslash itself (\\),
405
- the NUL byte (\0), Line feeds (\n), Carriage return (\r), and the
405
+ the NULL byte (\0), Line feeds (\n), Carriage return (\r), and the
406
406
quotes (\').
407
407
408
408
B<Note:> Quoting "Strings" using double quotes are recognized as
@@ -461,7 +461,7 @@ the parser, especially keywords like FROM and WHERE that are central to
461
461
parsing the statement.
462
462
463
463
In the reverse situation, suppose you want to parse some SQL that defines a
464
- column as type BIG_BLOB. Since 'BIG_BLOB' isn't a recognized ANSI data type,
464
+ column as type BIG_BLOB. Since 'BIG_BLOB' is not a recognized ANSI data type,
465
465
an error will be produced by default. To make the parser treat it as a valid
466
466
data type, you do this:
467
467
0 commit comments