in reply to mySQL Times Out / Disconnects
You're missing a lot of pertinent code.
It would help to see what &Execute looked like, and when you're dumping MySQL/DBI errors, it's best to do so like this:
sub SQL { $dbh = DBI->connect("DBI:mysql:DBname","$un","$pw") || Terminate('Sorry, Disconnecting' . $DBI::errstr); # Prints error . $_ +[0] } # END SQL
Other than that, this sounds like a time out issue if there aren't any errors being thrown by DBI like you say. Update your node and I'm sure we can solve this problem without too much trouble.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: mySQL Times Out / Disconnects
by CountZero (Bishop) on Oct 01, 2007 at 08:02 UTC | |
|
Re^2: mySQL Times Out / Disconnects
by JayBee (Scribe) on Oct 03, 2007 at 10:21 UTC |