zoukankan      html  css  js  c++  java
  • 在asp.net2.0中使用存储过程

    本文介绍了在ASP.NET2.0中使用存储过程的方法。

      以下是SQL中两个存储过程:

    以下是引用片段:
      CREATE PROCEDURE dbo.oa_selectalluser
      AS
      select * from UserInfo
      GO
      CREATE PROCEDURE dbo.oa_SelectByID
      @id int
      AS
      select * from UserInfo where ID=@id
      GO

      一个是带参数的存储过程,一个是不带参数的存储过程.下面介绍怎么在VS2005中使用这两个存储过程.

      (一).不带参数的存储过程:

    以下是引用片段:
      protected void Page_Load(object sender, EventArgs e)
      ...{
      if(!Page.IsPostBack)
      ...{
      //不带参数的存储过程的使用方法
      SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["oaConnectionString"].ToString());
      SqlDataAdapter da = new SqlDataAdapter();
      DataSet ds=new DataSet();
      da.SelectCommand = new SqlCommand();
      da.SelectCommand.Connection = conn;
      da.SelectCommand.CommandText = "oa_SelectAllUser";
      da.SelectCommand.CommandType = CommandType.StoredProcedure;
      da.Fill(ds);
      GridView1.DataSource = ds;
      GridView1.DataBind();
      }

      在页面中添加了一个GridView控件用来绑定执行存储过程得到的结果.

      (二).带参数的存储过程:

    以下是引用片段:
      protected void btn_search_Click(object sender, EventArgs e)
      ...{
      //带参数的存储过程的使用方法
      SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["oaConnectionString"].ToString());
      SqlDataAdapter da = new SqlDataAdapter();
      DataSet ds = new DataSet();
      da.SelectCommand = new SqlCommand();
      da.SelectCommand.Connection = conn;
      da.SelectCommand.CommandText = "oa_SelectByID";
      da.SelectCommand.CommandType = CommandType.StoredProcedure;
      SqlParameter param = new SqlParameter("@id", SqlDbType.Int);
      param.Direction = ParameterDirection.Input;
      param.Value = Convert.ToInt32(txt_value.Text);
      da.SelectCommand.Parameters.Add(param);
      da.Fill(ds);
      GridView1.DataSource = ds;
      GridView1.DataBind();
      }

      同样,在页面中添加了一个GridView控件用来绑定执行存储过程的结果,另外,在页面中还添加了一个textbox控件和一个BUTTON按钮,上面的执行存储过程是放在按钮的onclick事件中的.textbox控件用来接收存储过程的参数.

  • 相关阅读:
    Goolge-Guava Concurrent中的Service
    Golang操作数据库
    HttpContext
    office 问题集
    C# 日志使用
    字符编解码的故事 字符集 GBK GB2312 GB18030 Unicode 的由来和区别
    TCP UDP 协议的选择
    WebService 学习总结
    WebService 学习过程
    Archery:开源漏洞评估和管理工具
  • 原文地址:https://www.cnblogs.com/nianshi/p/961292.html
Copyright © 2011-2022 走看看