关于select count(*) from 表名返回的记录数!
我用select count(*) from 表名求得某表的记录总数,怎么把这个查询的总记录数填写到一个textbox的text属性里?
我是用如下代码但不知怎么把结果填写到textbox的TEXT属性里:
string str="provider= microsoft.jet.oledb.4.0;data source......"打开数据库省略。。。。。
oledbconnection mycon=new oledbconnection (str);
mycon.open();
oledbcommand mycom=new oledbcommand();
mycom.connection=mycon;
mycom.commandtype=commandtype.text;
mycom.commandtext="select count(*) from 表名 " ;
mycom.executenonquery();
剩下的不会写了,请各位看看,还有就是执行mycom.executenonquery();报错如下:
未处理的“system.data.loedb.loedbexception”类型的异常出现在system.data.dll中。
中断 继续 忽略 帮助