Perl DBI modules
From: Jeffery Herman <jherman_at_imap4.lbl.gov>
Date: Mon, 22 Jun 1998 17:10:59 -0700
Message-ID: <358EF292.E49E365F_at_imap4.lbl.gov>
I'm trying to use the Perl DBI modules to extract a long raw field into a Perl variable. When I issue the following commands:
Date: Mon, 22 Jun 1998 17:10:59 -0700
Message-ID: <358EF292.E49E365F_at_imap4.lbl.gov>
I'm trying to use the Perl DBI modules to extract a long raw field into a Perl variable. When I issue the following commands:
undef $/;
$c = $h->prepare("select image_sample from image_table where image_id =
'im01'");
$c->execute;
($jpeg) = $c->fetchrow_array;
I get the following error:
There was an error ORA-01406: fetched column value was truncated (DBD: ofetch rcode) at xjpeg line 23.
Does anybody know what's wrong with this?
Jeff Received on Tue Jun 23 1998 - 02:10:59 CEST
