Test for empty recordset?

  • Thread starter Thread starter Guest
  • Start date Start date
If rst.EOF = True And rst.BOF = True Then
' there are no records in the recordset
End If

or


If rst.RecordCount = 0 Then
' there are no records in the recordset
End If
 
Thanks Ken.


Ken Snell said:
If rst.EOF = True And rst.BOF = True Then
' there are no records in the recordset
End If

or


If rst.RecordCount = 0 Then
' there are no records in the recordset
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