首頁 >後端開發 >C++ >如何在 C# 中執行包含多個語句的 .SQL 腳本檔案?

如何在 C# 中執行包含多個語句的 .SQL 腳本檔案?

Patricia Arquette
Patricia Arquette原創
2025-01-18 15:12:10425瀏覽

How Can I Execute an .SQL Script File with Multiple Statements in C#?

使用C#執行.SQL腳本檔

在C#中,執行包含多個語句的.SQL檔案需要一種不同於ODP.NET的ExecuteNonQuery方法的替代方法。本文介紹了兩種執行此任務的方法。

方法一:使用SQL Server Management Objects (SMO)

  1. 使用SqlConnection建立資料庫連線。
  2. 使用連線初始化Server物件。
  3. 使用Server.ConnectionContext.ExecuteNonQuery(script)執行腳本。
<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**

  1. 建立一個Process對象,並設定UseShellExecute為false。
  2. 重定向標準輸出以捕捉結果。
  3. 將FileName屬性設定為"sqlplus"。
  4. 設定Arguments屬性以包含資料庫憑證和腳本路徑。
  5. 將CreateNoWindow設為true以隱藏控制台視窗。
  6. 如果進程返回退出代碼1,則重試操作。
<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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn