本文介绍了从OracleDataReader行数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何一个可以告诉我如何找到行数由 OracleDataReader 在.NET 2.0?

解决方案

所以,它不知道有多少行会。如果您使用的数据适配器,那么你就可以得到一个行数,因为它取了行。

在你的情况,你必须获取所有行(如果你需要获取的数据只),以获取该行数:

  OracleDataReader读卡器= cmd.ExecuteReader();
INT rowCount时= 0;
而(reader.Read())
{
    //此处是您的逻辑
    rowCount等++;
}
 

不过,如果你并不需要这些数据,这将是更好地改写存储过程/查询返回的行数显式

Can any one tell me how to find row count from OracleDataReader in .net 2.0?

解决方案

So, it does not know how many rows there will be. If you use the dataadapter, then you will be able to get a row count since it fetches therows.

In your case you have to fetch all the rows (if you need to fetch the data only) to get the row count:

OracleDataReader reader = cmd.ExecuteReader();
int rowCount = 0;
while (reader.Read())
{
    // your logic here
    rowCount++;
}

But if you don't need that data, it would be better to reformulate your stored procedure/query to return row count explicitly.

这篇关于从OracleDataReader行数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 12:54
查看更多