I am trying to put together a deployment package for a psolution which needs to configure an Oracle database schema. The schema contains most of the Oracle object types in one form or another.
I want to run the deployment entirely from the deployment application, and have created a custom installation task to perform most of the actions.
I can create tables and views without any problem whatsoever, but I can't create PL/SQL packages through the .Net data access tools.
Can anyone tell me how they have overcome this problem using .Net Framework 2.0, and which Oracle Data Client was used?
Edit: I currently run SQL scripts from the command line, but call these from the installer. This doesn't give the level of feedback I'm looking for, though it does allow me to quickly deploy the application in most circumstances.
I have also had this method fail me on account of the schema I was deploying to not having rights to create triggers.