调用存储过程的一些方法

protected void Button1_Click(object sender, EventArgs e)
   {
    
       int number =Convert.ToInt32(TextBox1.Text.ToString().Trim());
       int tid =Convert.ToInt32(TextBox2.Text.ToString().Trim());
       int k = exec_proc_2(number, tid);
       bind();
       Response.Write(k.ToString());
    
     
   }
   protected void bind()
   {
       SqlConnection conn = new SqlConnection("server=(local);database=yiqi;uid=monkey;pwd=donkey");
       conn.Open();
       SqlCommand cmd = new SqlCommand("proc_3", conn);
       cmd.CommandType = CommandType.StoredProcedure;
       DataTable dt = new DataTable();
       using (SqlDataReader sdr = cmd.ExecuteReader(CommandBehavior.CloseConnection))
       {
           dt.Load(sdr);
       }
       GridView1.DataSource = dt;
       GridView1.DataBind();

   }

   public static int exec_proc_2(int number, int tid)
   {
       SqlConnection conn = new SqlConnection("server=(local);database=yiqi;uid=monkey;pwd=donkey");
       conn.Open();
       SqlCommand cmd = new SqlCommand("proc_2", conn);//同上
       cmd.CommandType = CommandType.StoredProcedure;//同上
       cmd.Parameters.Add(new SqlParameter("@result", SqlDbType.Int));//添加一个名为@result的参数,数据类型为SqlDbType.Int
       cmd.Parameters["@result"].Direction = ParameterDirection.Output;//将@result参数设置成为接收输出参数
       cmd.Parameters.AddWithValue("@number", number);
       cmd.Parameters.AddWithValue("@tid", tid);
       cmd.ExecuteNonQuery();
       int result = (int)cmd.Parameters["@result"].Value;//将输出的Object数据转换成int类型
       return result;
   }

 

 

-----------------------------------------------------------------------------------------------------

 

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go


ALTER PROC [dbo].[proc_1]

AS

Insert t1(number) Values(200)

 

 

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go


ALTER PROC [dbo].[proc_2]

@result int output,

@number int,

@tid int

AS

Update t1 Set number=number+@number Where tid=@tid

Select @result=number From t1

 

 

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go


ALTER PROC [dbo].[proc_3]
AS
select * from t1

 

--------------------------------------

Create Table Table_1

(

tid int identity(1,1),

number int

)

转载于:https://www.cnblogs.com/houweidong/archive/2013/04/08/3008669.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值