C# winform窗体设计-查询单个值
2020-12-13 16:07
标签:des winform style blog io color ar os 使用 查询单个值主要用于对成绩最低分,最高分,学生总数,学生性别等信息的统计 在查询单个值的时候用到了ExecuteScalar方法,连接以及语句方面,以及思路和对数据的增删改差不多 下面请看一段代码: ps: ExecuteScalar方法返回值为objects,用于在使用的时候应该考虑适当的情况作出合适的强制类型转换 TIPS:此方法可以用于对登陆窗体的设计 ----------------------------------------------------------------------------------------------------------------------------- 附录:用户登陆窗体设计: --------->>>>>> [小技巧] C# winform窗体设计-查询单个值 标签:des winform style blog io color ar os 使用 原文地址:http://www.cnblogs.com/boy1025/p/4079958.html string s = "server=.;database=SampleDb;Integrated Security=True";
SqlConnection c = new SqlConnection(s);
c.Open();
SqlCommand command = new SqlCommand();
string sql="select count(*) from student"
command.Connection = c;
command.CommandText = sql;
int n = command.ExecuteScalar();
c.Close();
Messagebox.show("共有"+n+"个学生");