Re: Invalid attempt to read when no data is present

Tech-Archive recommends: Fix windows errors by optimizing your registry



I get this error when I try to get the value of a column without first
calling the .Read method of the DataReader. Generally, you should
check the return from the .Read method:

While dtrReceivers.Read
'Read the values here
End While

..Read will return false when there are no more rows to read.

.