DBI Error: END failed--call queue aborted.
[email protected] (i5mast)
| Newsgroups | perl.dbi.users |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <25645cdf-b9a5-4271-a411-6304b06d55e7@q18g2000vbm.googlegroups.com> |
I'm using Solaris 10 sparc, Perl 5.8.4, DBI 1.615, instantclient
10.1.0.5, DBD::Oracle 1.16. I compiled and installed the modules
successfully. I can connect to DB and fetch records just fine.
However, when my perl script finishes, it prints out the error.
I'm using Sun's compiler
cc: Sun C 5.8 Patch 121015-04 2007/01/10
I've tried DBD::Oracle 1.24 and DBI 1.53 versions but the error still
happens at the end :(
I've read about other people getting this message but no resolution. I
would appreciate any help.
use strict;
use DBI;
my $dbh = DBI->connect( 'dbi:Oracle:<XXX>',
'user',
'passwd',
) || die "Database connection not made:
$DBI::errstr";
$dbh->disconnect;
print "Done. :)\n";
Done. :)
Out of memory!
Callback called exit.
END failed--call queue aborted.
--
i5mast