I am trying to use MySQL through Perl (but this has also
happened doing other things). I can print before I connect,
but afterwards it won't print. I cann't be sure if it is
connecting or not because I can't get any print out to see.
Below, I get print 1 and 2, but not 3. Is this Perl or
some server problem?
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "OK 1";
use DBI;
print "OK 2";
$dbh = DBI->connect("DBI:mysql...
$dbh->disconnect();
print "OK 3";
Originally posted as a Categorized Question.