從 ASP.NET/C# 中的 SqlDataReader 檢索字串資料
本指南示範如何在 ASP.NET/C# 中使用 SqlDataReader
從 SQL Server 資料庫有效檢索字串資料。 重點是處理從查詢結果中提取的字串值。
下面的範例顯示了一個常見場景:與 SqlDataReader
物件 (rdr
) 互動的 C# 程式碼片段,假定包含傳回單一字串列的 SQL 查詢的結果。
<code class="language-csharp">SqlDataReader rdr = cmd.ExecuteReader(); while (rdr.Read()) { // How to read strings? }</code>
讀取字串資料最有效的方法是使用GetString()
方法。 這是改進後的程式碼:
<code class="language-csharp">using (SqlDataReader rdr = cmd.ExecuteReader()) { while (rdr.Read()) { string myString = rdr.GetString(0); // 0 represents the first column. // Process or store myString; example: adding to a list. myStringList.Add(myString); } }</code>
此修訂後的程式碼包含了關鍵改進:
using
語句: 確保 rdr
物件正確關閉和處置,防止資源洩漏。 GetString(0)
: 直接從目前行的第一列(索引 0)擷取字串值。 try-catch
區塊來處理潛在的異常,例如IndexOutOfRangeException
(如果列索引無效)或SqlException
(資料庫錯誤) .此方法提供了一種高效且可靠的方法,用於從 ASP.NET/C# 應用程式中的 SqlDataReader
中提取和處理字串資料。 請記住調整列索引(本例中為 0)以符合查詢結果集中的實際列位置。
以上是如何在 ASP.NET/C# 中有效地從 SqlDataReader 讀取字串資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!