in reply to Find empty tables - sqlite module
0E0 is a DBI shorthand meaning no rows returned/affected on a successful query. See the DBI docs for more-
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.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Find empty tables - sqlite module
by bubnoff (Novice) on Jan 01, 2009 at 00:17 UTC | |
by Herkum (Parson) on Jan 01, 2009 at 02:15 UTC | |
|
Re^2: Find empty tables - sqlite module
by Marshall (Canon) on Jan 01, 2009 at 06:49 UTC | |
by Your Mother (Archbishop) on Jan 01, 2009 at 17:40 UTC |