in reply to perl script to delete or update an ORACLE table hangs during execution
Thanks for updating your post with code.
Now, what happens when you alter your DBI->connect() line to look like this:
my $connect = DBI->connect( $dsn, $user, $pw, { RaiseError => 1 } );
Or as an alternative, check for an error explicitly after every single DBI call; your prepare(), your execute(), your finish(), and your commit().
Like I said in my earlier post, the error messages are often helpful.
Dave
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: perl script to delete or update an ORACLE table hangs during execution
by prashantktyagi (Scribe) on Jun 05, 2012 at 11:34 UTC | |
by davido (Cardinal) on Jun 05, 2012 at 18:52 UTC |