No ora_errno
[email protected] ("Harter, Douglas") Fri, 25 Jul 2003 11:38:24 -0400
| Newsgroups | perl.dbi.oracle-oci |
|---|---|
| Message-ID | <[email protected]> |
I am doing a use Oraperl; on a Sun Unix system in perl. My problem is I cannot seem to get anything from ora_errno or orr_errstr. I have put in what I know is a bad select statement into my string to ora_open. I am putting in a value for a where which I know is not there. This string gives me a record not found using sqlplus. If I put in a good value I get a valid find. However, I get an undef to both ora_errno and ora_errstr from the ora_open and ora_fetch. My version of Oraperl is 3.000. The statements I am using are: my $csr = &ora_open($lda,$sql); my ($id,$email,$last,$first) = &ora_fetch($csr); .