SELECT ojds_namespace.execute;
*
ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalStateException
-- to be successful you must have previously used WRITE to provide a command to execute
Reads the serialized result following command execution
ojds_namespace.read RETURN LONG RAW;
CREATE TABLE t(
col CLOB);
DECLARE
retVal BLOB;
BEGIN
retVal := ojds_namespace.read;
INSERT INTO t
(col)
VALUES
(TO_CLOB(retVal));
END;
/
-- will return a result only if a command has been executed