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
but last string causes an error "ORA-22275 Invalid LOB Locator specified".
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';