SQLDataReader行数

SQLDataReader行数,第1张

SQLDataReader行数

SQLDataReaders是仅转发的。您实际上是在这样做:

count++;  // initially 1.DataBind(); //consuming all the records//next iteration on.Read()//we've now come to end of resultset, thanks to the DataBind()//count is still 1

您可以改为

if (reader.HasRows){    rep.DataSource = reader;    rep.DataBind();}int count = rep.Items.Count; //somehow count the num rows/items `rep` has.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5673910.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存