有時候我們在寫程序的時候,需要查詢當前數據庫裡共有多少條記錄,那麼今天就記錄下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())+"條地址","提示");
從實現結果上,兩種方法均可,但是從執行效率等方面的話,筆者還是喜歡使用第二種方法。