in reply to want to skip displaying of "DBD::Oracle::st execute failed:" error messages showing full query
See DBI->connect and its parameters. Most likely, you want to construct your database handle as:
my $dbh= DBI->connect($dsn, $user, $password, { PrintError => 0, Raise +Error => 1 } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: want to skip displaying of "DBD::Oracle::st execute failed:" error messages showing full query
by sumalatha (Novice) on Apr 07, 2015 at 11:41 UTC | |
by Corion (Patriarch) on Apr 07, 2015 at 11:47 UTC | |
by boftx (Deacon) on Apr 07, 2015 at 17:39 UTC |