Subject: | errors in DBD-Oracle doco |
A couple of the code samples here (http://search.cpan.org/~timb/DBD-Oracle-1.15/Oracle.pm) seem to contain errors. The two that I found are in the sample labelled "Example: Streaming character data from the database"
The last 3 lines:
while( my $data = $dbh->ora_lob_read( $char_locator, $offset, $chunk_size ) {
print STDOUT $data;
}
should be (I think):
while( my $data = $dbh->ora_lob_read( $char_locator, $offset, $chunk_size )) {
print STDOUT $data;
$offset +=length($data);
}