我有机会在迁移项目(VB 到 VB.NET)中工作。我对 RecordSet 功能感到困惑。在我们的项目中,我们根据场景使用 DataReader。但是在像 dsr.EOF 这样的循环案例中。
Dim recordset As dao.RecordSet
If recordset .EOF Then
' ' msgbox "Please enter some number ", vbOKOnly, "Number Not Found"
' ' txtAdd.SetFocus
' ' Exit Sub
End If
如何将其转换为 VB.NET?我们需要写 If Not reader.Read 或 If reader.Read。
有什么可以帮助我的吗?