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
 
Back
Top