Skip to content

Commit d0baa91

Browse files
committed
POD tweaks
1 parent 0de330d commit d0baa91

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.pod

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ similar to C<SQL::Abstract::insert>, but much faster.
5858
C<INSERT IGNORE> and C<ON DUPLICATE KEY UPDATE> variants supported for MySQL/MariaDB.
5959

6060
Although it is developed for use in our production MySQL/MariaDB, its main functions
61-
will work on DBs with similar INSERT INTO multi-row syntax like Postgres. From v0.03,
62-
Oracle Database is also supported.
61+
will work on DBs with similar C<INSERT INTO> multi-row syntax like PostgreSQL.
62+
From v0.03, Oracle Database is also supported.
6363

6464
=head1 EXPORTS
6565

@@ -118,7 +118,7 @@ create an empty string in the db or give an error depending on your column type
118118
db settings.
119119

120120
=item * C<oracle> : This is automatically set to true when an Oracle driver is
121-
detected (using C<$dbh-=E<gt>{Driver}-=E<gt>{Name}>) and the module will produce the
121+
detected (using C<$dbh-E<gt>{Driver}-E<gt>{Name}>) and the module will produce the
122122
Oracle C<INSERT ALL> format. Specifying it manually in the constructor will override
123123
the automatic detection - a false value will force the MySQL compatible multi-row
124124
C<INSERT INTO> syntax (which should work on Oracle 23c or newer), while a true value

lib/SQL/Inserter.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ similar to C<SQL::Abstract::insert>, but much faster.
7373
C<INSERT IGNORE> and C<ON DUPLICATE KEY UPDATE> variants supported for MySQL/MariaDB.
7474
7575
Although it is developed for use in our production MySQL/MariaDB, its main functions
76-
will work on DBs with similar INSERT INTO multi-row syntax like Postgres. From v0.03,
77-
Oracle Database is also supported.
76+
will work on DBs with similar C<INSERT INTO> multi-row syntax like PostgreSQL.
77+
From v0.03, Oracle Database is also supported.
7878
7979
=head1 EXPORTS
8080
@@ -133,7 +133,7 @@ create an empty string in the db or give an error depending on your column type
133133
db settings.
134134
135135
=item * C<oracle> : This is automatically set to true when an Oracle driver is
136-
detected (using C<$dbh-=E<gt>{Driver}-=E<gt>{Name}>) and the module will produce the
136+
detected (using C<$dbh-E<gt>{Driver}-E<gt>{Name}>) and the module will produce the
137137
Oracle C<INSERT ALL> format. Specifying it manually in the constructor will override
138138
the automatic detection - a false value will force the MySQL compatible multi-row
139139
C<INSERT INTO> syntax (which should work on Oracle 23c or newer), while a true value

0 commit comments

Comments
 (0)