in reply to Silencing DBI "(err=0, errstr=undef, state=undef)" errors
if not, try to trace it with DBI->trace{ $tracelevel } or DBI->trace{ $tl, $tracefile } ... to see what happens bye... eval { $sth = $dbh->prepare( $sqlstatement ); $sth->execute(); }; if ( $@ ) { warn "Database Error: $@\n"; } ...
fixed formatting by holli
|
|---|