本文介绍了如何使用executioncalar获取记录计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码,但不起作用: -
this is my code but not work:-
void CountTotal()
{
con.Open();
s = "select Count(*) from ResrvationData where Date_Reservation = @Date_Reservation";
sCommand = new SqlCommand(s , con);
sCommand.Parameters.AddWithValue("@Date_Reservation", dateTimePicker_Time.Text);
object count = sCommand.ExecuteScalar();
if (count != null) txt_TotalBooks.Text = count.ToString();
con.Close();
}
private void FRM_Reservation_date_Load(object sender, EventArgs e)
{
CountTotal();
}
我的尝试:
i希望显示计数数据
What I have tried:
i want display count where data
推荐答案
这篇关于如何使用executioncalar获取记录计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!