使用C#執行.SQL腳本檔
在C#中,執行包含多個語句的.SQL檔案需要一種不同於ODP.NET的ExecuteNonQuery方法的替代方法。本文介紹了兩種執行此任務的方法。
方法一:使用SQL Server Management Objects (SMO)
<code class="language-csharp">using Microsoft.SqlServer.Management.Smo; using Microsoft.SqlServer.Management.Common; using System.IO; using System.Data.SqlClient; SqlConnection conn = new SqlConnection(sqlConnectionString); Server server = new Server(new ServerConnection(conn)); string script = File.ReadAllText(@"path/to/script.sql"); server.ConnectionContext.ExecuteNonQuery(script);</code>
*方法二:產生行程以呼叫SQLPlus**
<code class="language-csharp">Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.FileName = "sqlplus"; p.StartInfo.Arguments = string.Format("xx/xx@{0} @{1}", in_database, s); p.StartInfo.CreateNoWindow = true; bool started = p.Start(); while (p.HasExited == false) { Application.DoEvents(); } int exitCode = p.ExitCode; if (exitCode != 0) { ... // 错误处理 }</code>
以上是如何在 C# 中執行包含多個語句的 .SQL 腳本檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!