Reputation: 15475
If I'm using while(reader.read()...) is there an internal index available of do need to create my own int counter++ deal?
Upvotes: 0
Views: 856
Reputation: 120704
Assuming that reader
is an IDataReader
then, no, there is no internal index available.
Upvotes: 1