Problem with recordset
Hi.
I have the following code:
start code:
Set SearchEntities = GetRecordset(strSQL, adOpenForwardOnly)
If Not SearchEntities Is Nothing Then
If SearchEntities.State = 0 Then GoTo err_h_SearchEntities
End If
end code:
where SearchEntities is a recordset object.
after the "getRecordSet" the "SearchEntities" is not nothing
but
the state is 0
How could it be ?
Is it possible that there is a syncronize problem ?
thanks.
|