From 8c0209e4f471ca4c4f1b383e604f14dc87fb61c8 Mon Sep 17 00:00:00 2001 From: Max Maischein Date: Fri, 28 Aug 2020 13:58:28 +0200 Subject: [PATCH] Remove trailing whitespace --- lib/DBD/SQLite.pm | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 1032e1d..fd14348 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -551,7 +551,7 @@ my @FOREIGN_KEY_INFO_ODBC = ( # Maybe we could add an option so that the user can choose which field # names will be returned; the DBI spec is not very clear about ODBC vs. CLI. my @FOREIGN_KEY_INFO_SQL_CLI = qw( - UK_TABLE_CAT + UK_TABLE_CAT UK_TABLE_SCHEM UK_TABLE_NAME UK_COLUMN_NAME @@ -765,7 +765,7 @@ sub statistics_info { TABLE_CAT => undef, TABLE_SCHEM => $db->{name}, TABLE_NAME => $tbname, - NON_UNIQUE => $row->{unique} ? 0 : 1, + NON_UNIQUE => $row->{unique} ? 0 : 1, INDEX_QUALIFIER => undef, INDEX_NAME => $row->{name}, TYPE => 'btree', # see https://www.sqlite.org/version3.html esp. "Traditional B-trees are still used for indices" @@ -1334,7 +1334,7 @@ bind values with no explicit type. SQLite supports several placeholder expressions, including C and C<:AAAA>. Consult the L and SQLite documentation for -details. +details. L @@ -1345,7 +1345,7 @@ named) placeholders to avoid confusion. my $sth = $dbh->prepare( 'update TABLE set a=?1 where b=?2 and a IS NOT ?1' ); - $sth->execute(1, 2); + $sth->execute(1, 2); =head2 Pragma @@ -1520,7 +1520,7 @@ As the L doc says, you almost certainly do B need to call L method if you fetch all rows (probably in a loop). However, there are several exceptions to this rule, and rolling-back of an unfinished C statements in a transaction (See L for @@ -1550,7 +1550,7 @@ statements (a C) to a statement handle (via C or C), L only processes the first statement, and discards the rest. -If you need to process multiple statements at a time, set +If you need to process multiple statements at a time, set a C attribute of a database handle to true when you connect to a database, and C method takes care of the rest (since 1.30_01, and without creating DBI's statement @@ -1784,7 +1784,7 @@ keys of temporary tables). undef, $fk_schema, $fk_table); Returns information about foreign key constraints, as specified in -L, but with some limitations : +L, but with some limitations : =over @@ -1849,7 +1849,7 @@ a C command; see L earlier in this manual. $unique_only, $quick); Returns information about a table and it's indexes, as specified in -L, but with some limitations : +L, but with some limitations : =over @@ -2417,7 +2417,7 @@ Virtual tables are explained in L. Sets a new run-time limit for the category, and returns the current limit. If the new value is a negative number (or omitted), the limit is unchanged and just returns the current limit. Category ids (SQLITE_LIMIT_LENGTH, -SQLITE_LIMIT_VARIABLE_NUMBER, etc) can be imported from DBD::SQLite::Constants. +SQLITE_LIMIT_VARIABLE_NUMBER, etc) can be imported from DBD::SQLite::Constants. =head2 $dbh->sqlite_get_autocommit() @@ -2703,7 +2703,7 @@ then query which buildings overlap or are contained within a specified region: $minLong, $maxLong, $minLat, $maxLat); my $overlapping = $dbh->selectcol_arrayref($overlap_sql,undef, - $minLong, $maxLong, $minLat, $maxLat); + $minLong, $maxLong, $minLat, $maxLat); For more detail, please see the SQLite R-Tree page (L). Note that custom R-Tree @@ -2723,7 +2723,7 @@ virtual tables. These can have many interesting uses for joining regular DBMS data with some other kind of data within your Perl programs. Bundled with the present distribution are : -=over +=over =item *