Is there a .Net interface to Oracle SQLPLUS?
I'm developing some automation to control the execution of SQL scripts. The scripts are run through SQL*PLUS and contain PL/SQL calls in them (hence I can't run them through ODP.NET ). I was wondering if there was a .NET interface to SQL*PLUS ? If so has anyone used it? You can do it in C# with this piece of code: public int execString(string scriptFileName) { int exitCode; ProcessStartInfo processInfo; Process process; int timeout = 5000; processInfo = new ProcessStartInfo("sqlplus.exe", "@" + scriptFileName); processInfo.CreateNoWindow = true; processInfo.UseShellExecute = false; process =