CLOB with net option error.
Posted: Sun 22 May 2005 03:23
delphi 7+ODAC 5.5.1.18+oracle 9.2.0.6+chinese winxp sp2
table:
create table NEWS
(
ID NUMBER(10) not null,
TITLE VARCHAR2(100) not null,
INDATE DATE,
NOTE CLOB,
AUTHOR VARCHAR2(40)
)
when I use OCI and select * from NEWS ,the NOTE field return all .
but when I use NET option ,The NOTE field returns random length
of the field. So I can't use net option with CLOB.
Please check.
table:
create table NEWS
(
ID NUMBER(10) not null,
TITLE VARCHAR2(100) not null,
INDATE DATE,
NOTE CLOB,
AUTHOR VARCHAR2(40)
)
when I use OCI and select * from NEWS ,the NOTE field return all .
but when I use NET option ,The NOTE field returns random length
of the field. So I can't use net option with CLOB.
Please check.