Subject: | exit status $? lost after DBI-connect to ORACLE |
DBD-Oracle-1.17 (64bit)
DBI-1.50
AIX 5.3
Perl 5.8.6 64 Bit
After DBI-connect() the exit status $? is wrong for calls to system
function.
$dbh=DBI->connect("DBI:Oracle:","/","",);
system("echo hallo ");
printf("testb >>8 [%s]\n",$?>>8);
Prints:
testb >>8 [72057594037927935]
This is 64bit integer value for -1.
See also bug #16548, similar, but not same. Possibly related to signal
handler.
Thomas