in reply to IIS-CGI-DBI Errorless Errors
eval { my $dbh=DBI->connect("dbi:ODBC:$DSN",'USER','PASSWORD',{ RaiseError => 1, AutoCommit => 1, PrintError => 0 } ); # More database stuff create statements, execute }; if ($@) { print LOG $@; exit; } print LOG "Good\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IIS-CGI-DBI Errorless Errors
by Reverend Phil (Pilgrim) on Aug 08, 2002 at 04:53 UTC | |
|
Re: IIS-CGI-DBI Errorless Errors
by Reverend Phil (Pilgrim) on Aug 08, 2002 at 13:40 UTC |