ADO.NET을 사용하여 출력 매개변수 값에 액세스
이 가이드에서는 ADO.NET 애플리케이션 내에서 출력 매개변수 값을 효과적으로 검색하는 방법을 보여줍니다. 출력 매개변수를 적절하게 처리하는 것은 많은 데이터베이스 상호작용에 매우 중요합니다.
저장 프로시저에서 출력 매개변수 정의
저장 프로시저에서 출력 매개변수를 선언하려면 다음 구문을 사용하세요.
<code class="language-sql">@ParameterName DATATYPE OUTPUT</code>
예:
<code class="language-sql">@ID INT OUTPUT</code>
ADO.NET 코드에서 출력 매개변수 값 검색
다음 단계에서는 C# 코드에서 출력 매개변수 값에 액세스하는 방법을 자세히 설명합니다.
<code class="language-csharp">// Create a SqlParameter for the output parameter, specifying name, type, and direction. SqlParameter outputParameter = new SqlParameter("@ID", SqlDbType.Int); outputParameter.Direction = ParameterDirection.Output; // Add the output parameter to the SqlCommand's Parameters collection. cmd.Parameters.Add(outputParameter); // Execute the stored procedure. cmd.ExecuteNonQuery(); // Access the output parameter's value after execution. int id = (int)outputParameter.Value; </code>
중요 사항:
SqlDbType
을 생성할 때 사용된 SqlParameter
는 저장 프로시저에 있는 출력 매개 변수의 데이터 유형과 정확히 일치해야 합니다.outputParameter.Value
을 올바른 데이터 유형(예: int
, string
, DateTime
)으로 캐스팅합니다.null
값을 반환하는 상황을 처리하려면 적절한 null 검사(예: null 허용 유형 사용 또는 기본값 제공)를 구현하세요. 이렇게 하면 런타임 오류가 방지됩니다.위 내용은 ADO.NET에서 출력 매개변수 값을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!