Claus Pedersen
Member³
I have the following procedure:
I make a test script by rightclicking on the procedure, change the type from CLOB to Temporary CLOB (otherwise the CLOB can not be read in the test script, an old error), enter data in the clob and press F8. Now the data in the clob is translated into Chinese or Japanese or ???
(sorry to people in China and Japan, that I do not read your language)
Please fix this.
Code:
CREATE OR REPLACE PROCEDURE tester (input IN CLOB) IS
BEGIN
IF dbms_lob.substr (input, 1, 1) != 'x' THEN
NULL;
END IF;
END tester;
I make a test script by rightclicking on the procedure, change the type from CLOB to Temporary CLOB (otherwise the CLOB can not be read in the test script, an old error), enter data in the clob and press F8. Now the data in the clob is translated into Chinese or Japanese or ???
(sorry to people in China and Japan, that I do not read your language)
Please fix this.