in reply to DBI "drop table" next obstacle

Change
$sth->execute();
to
local $sth->{RaiseError} = 0; # Don't throw an exception on error. local $sth->{PrintError} = 0; # Don't display error messages. $sth->execute();