我用的C#2003与SQL Server2000
在一个KCPC表中定义以下一个存储过程
create procedure KCPC_update
@ID int,
@RKSJ datetime
as
update KCPC
set PKSJ=@PKSJ
where ID=@ID
我应该在C#.net中怎么使用这个存储过程了
关键我是想怎么给KCPC_update传递个时间的参数希望高手指教
谢谢了

解决方案 »

  1.   

    exec KCPC_update @ID=id, @RKSJ=你传入的时间
      

  2.   

    给你一个例子建立一新的角色,要求角色的名字不能重复,以下是一存储过程:
    程序代码
    CREATE PROCEDURE sp_AccountRole_Create@CategoryID int,
    @RoleName nvarchar(10),
    @Description nvarchar(50),
    @RoleID int outputAS 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
    执行存储过程的C#过程:
    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;可以得到三个值,分别是行影响值,存储过程返回值,新的ID值 
      

  3.   

    SqlConnection DbConnection = new SqlConnection(mConnectionString);
    SqlCommand command = new SqlCommand( "KCPC_update", DbConnection );
    DbConnection.Open(connectString);command.CommandType = CommandType.StoredProcedure;command.Parameters.Add("@ID", SqlDbType.Int); 
    command.Parameters.Add("@PKSJ", SqlDbType.DateTime); command.parameters["@ID"].value = strID; 
    command.parameters["@PKSJ"].value = strPKSJ; int rowsAffected = command.ExecuteNonQuery();