如何从数据集读取整型值?在c#
本文关键字:整型 读取 数据集 | 更新日期: 2023-09-27 18:01:58
如果我有一个函数返回DataSet,其中有1行int值
如何读取int值
为什么使用单一静态值的数据集。如果您正在使用sql reader,请使用ExecuteScalar函数
的例子:
function GetIntValue()
{
SqlConnection con = new SqlConnection(ConfigurationSettings.AppSettings["con"]);
con.Open();
SqlCommand cmdCount = new SqlCommand("SELECT COUNT(*) FROM Employees",con);
int numberOfEmployees = (int)cmdCount.ExecuteScalar();
Response.Write("Here are the " + numberOfEmployees.ToString() + " employees: <br><br>");
SqlCommand cmd = new SqlCommand("SELECT * FROM Employees",con);
SqlDataReader dr = cmd.ExecuteReader();
while(dr.Read()) {
Response.Write(dr["LastName"] + "<br>");
}
con.Close();
}