in reply to DBI "drop table"
You can run the the table name through $dbh->quote method instead, and interpolate it into the SQL.
(BTW instead of writing or die "$DBI::errstr" behind each operation you can just as well use the RaiseError => 1 option in connect).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBI "drop table"
by ikegami (Patriarch) on Apr 12, 2008 at 20:32 UTC | |
by tinita (Parson) on Apr 13, 2008 at 11:18 UTC |