We have prepared .sql scripts that migrate/set up our Oracle database schema and need to execute them as part of an automated database migration process. The tool that does this is written in .NET 8 / C#.
Is there a way to do this without having to spin up some sqlcl process that in turn executes the script file?
We noticed that ODP.NETs .ExecuteNonQuery() accepts only isolated statements and ran out of ideas.