asp.net如何调用数据库的存储过程

2024-12-20 12:10:37
推荐回答(3个)
回答1:

存储过程是写好了还是没写?
存储过程的读取一般是
SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["conStr"]);
SqlCommand cmd;
这是个形式
cmd = new SqlCommand("sp_你的过程", con);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new SqlParameter("@Type", SqlDbType.Int));
cmd.Parameters["@Type"].Value = 1;
cmd.Parameters.Add(new SqlParameter("@YourName", SqlDbType.NVarChar, 40));cmd.Parameters["@YourName"].Value = GoodsName.Text.Trim();

GridView1.DataSource = GetDataSet(你的数据库操作,作为显示的源);
GridView1.DataKeyNames = new String[] { "id" };
GridView1.DataBind();
这个是GridView的绑定方法

回答2:

public DataTable GetDataTable(string sqlText)
{
using (SqlConnection conn = new SqlConnection(connStr))
{
conn.Open();
using (SqlCommand cmd = conn.CreateCommand())
{
cmd.CommandText = sqlText;
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter( cmd);
da.Fill(dt);
return dt;
}
}
}
调用 (后面是参数如果没参数直接 exec 存储过程名)

GridView1.DataSource =GetDataTable(" exec 存储过程名字 '"+textbox.text+"','"+textbox1+"' ")

回答3:

先调用存储过程把取到数据放到一个 DATASET 中,再把 GRIDVIEW 的数据源连接到这个DATASET 就OK 了