Package wizard for Store Procs w/o Package

I've used the DOA Package Wizard to create the wrapper code for Stored Procs that are contained within Packages.
Some of the Stored Procs in the database I am working on are NOT contained within a Package.
Is there any tool similar to the "Package Wizard" that will generate the wrapper for these type of Stored Procs?
 
No, the wizard can only process packages. You will have to explicitly write a PL/SQL Block for these procedures, or encapsulate them in a package.
 
Back
Top