![]() |
|
go ahead... be a heretic | |
PerlMonks |
Re: How can I see error messages from MySQL?by autark (Friar) |
on Jul 10, 2000 at 04:27 UTC ( #21737=note: print w/replies, xml ) | Need Help?? |
The fact that it doesn't print "OK 3" suggests that something went
wrong inbetween "OK 2" and "OK 3". You don't see the error message,
because it's printed to STDERR, and the HTTP-server doesn't catch that
output.
Try to put this in your script:
use CGI::Carp qw(fatalsToBrowser);
This will ensure that messages to STDERR will be displayed in your browser
so that you easier can diagnose the problem.
Autark
In Section
Seekers of Perl Wisdom
|
|