As a part of our build process we want to execute SQL Scripts consisting of DDL and DML statements against a fresh database instance.
ADO.NET Connection/Command can't handle this without parsing and splitting the scripts.
The sqlplus
command line utility can execute scripts only interactively, and isn't suited for batch usage.
What am I missing? How can one execute sql scripts when using oracle?