Hello,
My Procedure is below.
CREATE PROCEDURE TEST_CLOB
(
IN P_CLOBINPUT CLOB
)
LANGUAGE SQLSCRIPT
SQL SECURITY INVOKER AS
/*****************************************************************************
******************************************************************************/
BEGIN
SELECT P_CLOBINPUT FROM DUMMY;
END;
When I try to Call my Procedure form C#.Net with the input nparameter as string with the length of 6000
It does not work
Please help me.