Procedure with IN LOB parameter in DOA 3.4.6. How?

al0

Member²
Hi,

I need to call packaged procedure that expect a LOB parameter. DOA version is 3.4.6 and in the moment can not be upgraded to newer one (it is small addition to very big old project).

How I can do this?

I tried

Code:
Attachment := TLobLocator.Create(osReport,otBLOB);
  Attachment.SetEmpty;
  Attachment.AsString := 'Test';
but last string causes an error "ORA-22275 Invalid LOB Locator specified".
 
Back
Top