My table:
create table testclob (name char(10),contents clob);
First:
when my SQl is : insert into testclob (name,contents) values(10,empt_clob())
SetComplexVariable('contents', LOB) is an error: 'unknown variable: :contents'
Where variable of 'contents' is defined?
second:
when my SQl is : insert into testclob (name,contents) values(10,:contents)
LOB.Write(Buffer, 100) is an error: 'TLOBLocator:Invalid handle.'
why?
Please tell me how to treat it.Thanks a lot.
snowboys
create table testclob (name char(10),contents clob);
First:
when my SQl is : insert into testclob (name,contents) values(10,empt_clob())
SetComplexVariable('contents', LOB) is an error: 'unknown variable: :contents'
Where variable of 'contents' is defined?
second:
when my SQl is : insert into testclob (name,contents) values(10,:contents)
LOB.Write(Buffer, 100) is an error: 'TLOBLocator:Invalid handle.'
why?
Please tell me how to treat it.Thanks a lot.
snowboys