How do I tell if a dataset contains any records?

  • Thread starter Thread starter William Gower
  • Start date Start date
W

William Gower

I used to be able to do

if rs.EOF and rs.EOF then
do something
end if
 
Check
myDataSet.Tables("TheTableInQuestion").Rows > 0 :: there are rows
otherwise, EOF.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
With a DataReader under the 1.1 framework you can check the .HasRows
property. For a DataSet. use DataSet.Tables[0].Rows.Count //where 0 is the
index of the table in question
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top