checking for 0 records in a table

  • Thread starter Thread starter DC Gringo
  • Start date Start date
D

DC Gringo

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

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

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
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
 
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

Back
Top