in reply to DBD::MySQL timeout during query
No default value is listed, but I wouldn't be surprised if it was 30 seconds.
Try something like:
$dsn = "DBI:mysql:database=$database;host=$hostname;port=$port;mysql_c +onnect_timeout=60"; $dbh = DBI->connect($dsn, $user, $password);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBD::MySQL timeout during query
by tachyon (Chancellor) on Sep 09, 2004 at 00:37 UTC | |
|
Re^2: DBD::MySQL timeout during query
by rcraig (Initiate) on Sep 09, 2004 at 15:11 UTC |