Dim rstEntry As New ADODB.RecordsetrstEntry.Open "SELECT phone FROM tkf_agent_info WHERE phone = '" & strDeviceNumber & "'", _
                   cnncallcenter, adOpenForwardOnly, adLockOptimistic, adCmdTextIf rstEntry.RecordCount <> 0 Then
    rstEntry!phone = Null 
    rstEntry.Update 
    Set rstEntry = Nothing
End If
Set rstEntry = Nothing这种打开一条记录并对之进行修改的情况下可能产生表死锁吗?
请各位大侠给点意见,谢谢!!!