W
William Ryan
You can use Datatable.Rows.Count on a DataTable
if you use a DataReader, the closest thing I can think of
is something like Dim i as Integer
While dataReader.Read
i+=1
End While
Hope this helps
Good Luck,
Bill
if you use a DataReader, the closest thing I can think of
is something like Dim i as Integer
While dataReader.Read
i+=1
End While
Hope this helps
Good Luck,
Bill