此查询在数据库中执行。
select COUNT(*) from Patient_Data where DummyValue = 'Y';
104
我必须number (104)
从database
to检索这个,asp.net with c#
以便当计数变为零时disable a button
,我必须如何将retrieve
这个数字从数据库中输入到代码中。它应该存储为integer
.
我已经在 c# 中尝试过这些代码行
using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["ConStr"].ConnectionString))
{
using (SqlCommand cmd = new SqlCommand("select COUNT(*) as PatientCount from Patient_Data where DummyValue = 'Y' ", cn))
{
try
{
cn.Open();
using (SqlDataReader rdr = cmd.ExecuteReader())
{
int Patcount;
if (rdr.Read())
{
//Code Required
}
}
}
catch (Exception ex)
{
// handle errors here
}
}
}