有时候我们在写程序的时候,需要查询当前数据库里共有多少条记录,那么今天就记录下c#开发环境下,查询数据库记录的两种方法,分别为使用while(read())方法和使用cmd.ExecuteScalar()方法。
方法一:使用while(read())方法
SqlConnection conn = new SqlConnection(getConnectionString);
conn4.Open();
SqlCommand cmd = new SqlCommand("select * from blog", conn);
SqlDataReader sdrr = cmd.ExecuteReader();
while (sdrr.Read())
{
MessageBox.Show(string.Format("数据库里共有{0}个地址", sdrr[0]), "提示");
}
方法二:使用cmd.ExecuteScalar()方法
SqlConnection conn = new SqlConnection(getConnectionString);
conn.Open();
SqlCommand cmd = new SqlCommand("select count(*) from blog", conn);
MessageBox.Show("数据库里共有"+Convert.ToInt32(cmd.ExecuteScalar())+"条地址","提示");
从实现结果上,两种方法均可,但是从执行效率等方面的话,笔者还是喜欢使用第二种方法。