我有两层,一个从数据库获取结果的数据层和一个在标签控件中显示数据的 UI 层这是数据层的代码
public class Test_DAL
{
public DataSet getEMP(string name1)
{
string conn = System.IO.File.ReadAllText("Connect.txt");
//string conn="Data Source=.\\sqlexpress;Initial Catalog=pss;Integrated Security=True";
//string conn = ConfigurationManager.ConnectionStrings["constr"].ToString();
SqlConnection dbconn = new SqlConnection(conn);
dbconn.Open();
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = new SqlCommand("select * from pss where Emp_code='"+name1+"'", dbconn);
DataSet ds = new DataSet();
da.Fill(ds);
dbconn.Close();
return ds;
}
}
并且是UI层的代码
private void btn_search_Click(object sender, EventArgs e)
{
string empcode=txt_empcode.Text;
Test_DAL obj1= new Test_DAL();
obj1.getEMP(empcode);
//dg.DataSource = obj1.getEMP(empcode).Tables[0];
}
我的问题是如何在标签上显示数据
非常感谢提前