问题描述
protected void btnload_Click(object sender,EventArgs e)
{
String cs = ConfigurationManager.ConnectionStrings [ConnectionString]。ConnectionString;
SqlConnection con = new SqlConnection(cs);
SqlDataAdapter da = new SqlDataAdapter(select * from tblEmployee Where Id =+ TextBox1.Text,con);
数据集dset = new Dataset();
// da.Fill(dset,tblEmployee); //在这行中我得到错误原因?请帮帮我
}
先谢谢
protected void btnload_Click(object sender, EventArgs e)
{
String cs = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
SqlConnection con = new SqlConnection(cs);
SqlDataAdapter da = new SqlDataAdapter("Select * from tblEmployee Where Id =" + TextBox1.Text,con);
Dataset dset = new Dataset();
// da.Fill(dset, "tblEmployee");// in this line iam getting the error why? please help me out
}
Thanks in advance
推荐答案
da.Fill(dset)
或者你可以使用
or you can use
da.Fill(dset.Tables["tblEmployee"])
我建议您使用数据表而不是ds。如果使用数据集,它会对性能产生负面印象。仅在需要时使用数据集。
在这里阅读更多
[]
[]
这篇关于system.data.dataadaptter.fill(...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!