Skip to content

Commit

Permalink
update .pod to match
Browse files Browse the repository at this point in the history
  • Loading branch information
dkechag committed Oct 29, 2023
1 parent eed36b2 commit 080f5bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ will generate the "classic" Oracle syntax even without an Oracle driver detected
# Fastest array method. Only bind data is passed.
my $ret = $sql->insert(@column_data_array);

# Alternative, allows SQL code as values in addition to bind variables
# Alternative allows SQL code as values in addition to bind variables.
my $ret = $sql->insert(\%row_data);

# No parameters will force emtying of buffer (db write)
# No parameters will force emptying of buffer (db write).
my $ret = $sql->insert();

The main insert method. Returns the return value of the last C<execute> statement
Expand Down

0 comments on commit 080f5bd

Please sign in to comment.