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

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,049
Latest member
Allen00Reed

Latest Threads

Top