在使用透過輸出參數傳回資料的預存程序時,存取 ADO.NET 應用程式中的輸出參數值至關重要。本指南闡明了該過程。
首先,聲明您的輸出參數,並將其方向指定為Output
。 以下是宣告名為 @ID
的輸出參數的方法:
<code class="language-csharp">SqlParameter outputIdParam = new SqlParameter("@ID", SqlDbType.Int) { Direction = ParameterDirection.Output };</code>
接下來,在執行預存程序之前,將此參數新增至 Parameters
物件的 SqlCommand
集合中。
執行後,從SqlParameter
物件中檢索輸出值。 然而,仔細的類型轉換對於避免錯誤至關重要。 考慮潛在的空值和類型不符。
以下程式碼說明了檢索 @ID
輸出參數的整數值的幾種方法:
<code class="language-csharp">// Method 1: String conversion and parsing int idFromString = int.Parse(outputIdParam.Value.ToString()); // Method 2: Direct casting int idFromCast = (int)outputIdParam.Value; // Method 3: Using a nullable integer (handles nulls) int? idAsNullableInt = outputIdParam.Value as int?; // Method 4: Using a default value if null int idOrDefaultValue = outputIdParam.Value as int? ?? default(int);</code>
至關重要的是,建立 SqlDbType
時使用的 SqlParameter
必須與資料庫的輸出參數資料類型精確匹配。 始終妥善處理潛在的類型轉換問題和空值。
以上是如何檢索 ADO.NET 中的輸出參數值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!