Hello
This code raise an exception (invalid handle).
var
MonClob_in: TLOBLocator;
begin
MonClob_in := TLOBLocator.Create(orases1, otCLOB);
MonClob_in.AsString:='test';
end;
My problem is i have a procedure in a package that need a string.
I don't use Varchar2 because it's limited to 4096 chars. My string is a XML string.
So i use a clob.
My proc is like :
PROCEDURE P_TEST_CLOB(P_CLOB_IN IN CLOB) IS
BEGIN
NULL;
END;
How i transform my delphi string to this clob ?
Is there is another solution more simple than clob ?
Jean-Pierre
This code raise an exception (invalid handle).
var
MonClob_in: TLOBLocator;
begin
MonClob_in := TLOBLocator.Create(orases1, otCLOB);
MonClob_in.AsString:='test';
end;
My problem is i have a procedure in a package that need a string.
I don't use Varchar2 because it's limited to 4096 chars. My string is a XML string.
So i use a clob.
My proc is like :
PROCEDURE P_TEST_CLOB(P_CLOB_IN IN CLOB) IS
BEGIN
NULL;
END;
How i transform my delphi string to this clob ?
Is there is another solution more simple than clob ?
Jean-Pierre