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?

link|improve this question

60% accept rate
You are using a fully qualified reference to DBMS_DDL. Not sure if that is the problem but, are you also doing it for the Function name? something like SCHEMA.MY_FUNCTION? – Guillem Vicens Feb 24 at 13:13
did u try just using execute instead of anon block? – tbone Feb 24 at 14:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.