调用存储过程(实现用户注册例子)

来源:互联网 发布:港版iphone6网络制式 编辑:程序博客网 时间:2024/05/06 22:27


建立一新的角色,要求角色的名字不能重复,以下是存储过程。

 

CREATE PROCEDURE sp_User_Create@UserName nvarchar(10),@Description nvarchar(50),@ID int outputAS    DECLARE @Count int    -- 查找是否有相同名称的记录    SELECT @Count = Count(ID) FROM Account WHERE        RoleName = @RoleName    IF @Count = 0        INSERT INTO Account         (UserName, Description) values        (@UserName, @Description)        SET @ID = @@IDENTITY        RETURN 1GO



执行存储过程的方法:

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("@UserName", SqlDbType.NVarChar, 10);command.Parameters.Add("@Description", SqlDbType.NVarChar, 50);command.Parameters.Add("@ID", 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["@UserName"].value = permission.PermissionName;command.parameters["@Description"].value = permission.Description;// 可以返回新的ID值command.parameters["@ID"].Direction = ParameterDirection.Output;int rowsAffected = command.ExecuteNonQuery();int result = command.parameters["Returnvalue"].value;int newID = command.parameters["@ID"].value;

 

得到三个值,分别是行影响值,存储过程返回值,新的ID值。