[求助]获取SQL数据库中某个表的行数,并把行的数目显示在textbox的方法
有这样一个表Aid name dep
1 a HR
2 b HR
3 c QM
4 d HR
5 e RD
6 f IT
只把符合条件(部门是HR)的行,行的数目显示在 textbox上
da=new data……("select count(*) from a where dep='HR'",conn);
dataset ds=new dataset();
da.fill(ds);
textbo1.text=ds.tables[0].rows[0][0].tostring();
select count(*)
返回的行数有不大于0的情况?
就算没数据还要返回个 “0” 呢