in reply to 405 error ( was: The Use of Use)

Remember that nearly all of the DBI functions can return undef, and provides a nice die message to help you trace errors at the SQL level. EG..
my $sth = $dbi->prepare( "SELECT * FROM table" ) or die DBI->errstr; $sth->execute( ) or die DBI->errstr;
Catching that error might help you locate your problem a bit more. I doubt highly it's with the use of modules and the like.
Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain