in reply to Re^2: Perl DBI: problems inserting data to a table
in thread Perl DBI: problems inserting data to a table
From the DBI POD for "execute":
"For a non-SELECT statement, execute returns the number of rows affected, if known. If no rows were affected, then execute returns "0E0", which Perl will treat as 0 but will regard as true. Note that it is not an error for no rows to be affected by a statement. If the number of rows affected is not known, then execute returns -1."
A simple text search (ctrl-f) will find it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl DBI: problems inserting data to a table
by mje (Curate) on Nov 21, 2013 at 15:12 UTC | |
|
Re^4: Perl DBI: problems inserting data to a table
by runrig (Abbot) on Nov 21, 2013 at 17:03 UTC | |
by boftx (Deacon) on Nov 21, 2013 at 19:43 UTC |