Test for empty recordset?

K

Ken Snell [MVP]

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
 
C

ctdak

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
 
Top