checking for 0 records in a table

D

DC Gringo

How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If
 
M

Mark Fitzpatrick

MyDataSet1.Table1.Rows.Count

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
D

Davide Vernole [MVP]

DC Gringo said:
How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If

Try this:

If MyDataSet1.Tables("Table1").Rows.Count = 0 Then
'your code here
End If
 
S

Shiva

Use DataTable.Rows.Count property.

How can I check for the number of records in a table?

If MyDataSet1.Table1.recordcount = 0
'my code'
End If
 

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

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,565
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top