I'm having problems to create a wrapped function programatically in Delphi 7 using OracleDAC.
I have a file with this script:
BEGIN
SYS.DBMS_DDL.CREATE_WRAPPED('CREATE OR REPLACE FUNCTION ... ');
END;
If I try to run it with "TOraScript" (OracleDAC) I get an ORA-24230 error, telling me that PL/SQL is not valid.
BUT, if I run the same script in SQLNavigator, everything goes OK, the function is created.
Has anybody face this problem?