C#调用SQL中的存储过程中有output参数,存储过程执行过程中返回信息
生活随笔
收集整理的這篇文章主要介紹了
C#调用SQL中的存储过程中有output参数,存储过程执行过程中返回信息
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
C#調用SQL中的存儲過程中有output參數,類型是字符型的時候一定要指定參數的長度。不然獲取到的結果總是只有第一字符。本人就是由于這個原因,折騰了很久。在此記錄一下,供大家以后參考!
例如:
CREATE PROCEDURE sp_AccountRole_Create @CategoryID int, @RoleName nvarchar(10), @Description nvarchar(50), @RoleID int output AS DECLARE @Count int -- 查找是否有相同名稱的記錄 SELECT @Count = Count(RoleID) FROM Account_Role WHERE RoleName = @RoleName IF @Count = 0 INSERT INTO Account_Role (CategoryID, RoleName, Description) valueS (@CategoryID, @RoleName, @Description) SET @RoleID = @@IDENTITY RETURN 1 GO?
SqlConnection DbConnection = new SqlConnection(mConnectionString); SqlCommand command = new SqlCommand( "sp_AccountRole_Create", DbConnection ); DbConnection.Open(connectString); // 廢置SqlCommand的屬性為存儲過程 command.CommandType = CommandType.StoredProcedure; command.Parameters.Add("@CategoryID", SqlDbType.Int, 4); command.Parameters.Add("@RoleName", SqlDbType.NVarChar, 10); command.Parameters.Add("@Description", SqlDbType.NVarChar, 50); command.Parameters.Add("@RoleID", SqlDbType.Int, 4); // 返回值 command.Parameters.Add("Returnvalue", SqlDbType.Int, 4, // Size ParameterDirection.Returnvalue, false, // is nullable 0, // byte precision 0, // byte scale string.Empty, DataRowVersion.Default, null ); command.parameters["@CategoryID"].value = permission.CategoryID; command.parameters["@RoleName"].value = permission.PermissionName; command.parameters["@Description"].value = permission.Description; // 可以返回新的ID值 command.parameters["@RoleID"].Direction = ParameterDirection.Output; int rowsAffected = command.ExecuteNonQuery(); int result = command.parameters["Returnvalue"].value; int newID = command.parameters["@RoleID"].value;?
?
?
轉載于:https://www.cnblogs.com/zhangs1986/p/4087804.html
總結
以上是生活随笔為你收集整理的C#调用SQL中的存储过程中有output参数,存储过程执行过程中返回信息的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HDU 5102 The K-th D
- 下一篇: C# winform 窗体怎么隐藏标题栏