本文介绍了如何在C#中返回数据表值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
public string IsEmpExists(string EmpId)
{
try
{
string IsExists;
string connstring = "Data Source=.;Initial Catalog=Accounts;Integrated Security=True";
string query = "select EmpName from AccountSummary where EmpId=@EmpId";
SqlConnection conn = new SqlConnection(connstring);
SqlCommand cmd = new SqlCommand(query, conn);
cmd.Parameters.AddWithValue("@EmpId", EmpId);
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dt);
if (dt != null && dt.Rows.Count > 0)
{
xxxx
}
return IsExists;
}
catch (Exception)
{
throw;
}
}
推荐答案
public bool IsEmpExists(string EmpId)
{
string connstring = "Data Source=.;Initial Catalog=Accounts;Integrated Security=True";
string query = "select COUNT(*) from AccountSummary where EmpId=@EmpId";
SqlConnection conn = new SqlConnection(connstring);
SqlCommand cmd = new SqlCommand(query, conn);
cmd.Parameters.AddWithValue("@EmpId", EmpId);
conn.Open();
return ((int) cmd.ExecuteScalar()) > 0 ;
}
但是,我不会在方法中放置Connection的实例化,而是使用使用命令的
语句。
if (dt != null && dt.Rows.Count > 0)
{
IsExists = dt.Rows[0].Field<string>("EmpName");
}
这篇关于如何在C#中返回数据表值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!