Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> BLOB writing/reading
Hello,
I am having problems using BLOB types. What I want to do is create an 180byte field used as a bitfield. Here's what I've done:
create table test (
bitfield blob,
id number);
insert into test values (empty_blob(), 1);
declare
locator_var blob;
amount_var integer; offset_var integer; buffer_var RAW;
The following errors occur:
buffer_var RAW;
*
ERROR at line 5:
ORA-06550: line 5, column 13: PLS-00215: String length constraints must be in range (1 .. 32767) ORA-06550: line 5, column 13:
ORA-06550: line 9, column 2: PLS-00201: identifier 'BUFFERVAR' must be declared ORA-06550: line 9, column 2:
Thanks for any help
--
---
Allen Walker | University of Texas at Austin
<awalker@cs.utexas.edu> | http://www.cs.utexas.edu/users/awalker
Received on Thu Sep 03 1998 - 17:05:08 CDT
![]() |
![]() |