我正在将通过 OTA API 连接到 Quality Center 的应用程序从 VB.net 转换为 C#。该应用程序广泛使用记录集,但我无法让它们在 C# 中工作。
具体来说,我无法将 Command 和 Recordset 转换为 C# 的正确格式。我尝试过的一切都失败了。
以下是我需要转换的代码的 VB.net 示例。
Private Function GetRecSet(ByVal Qry As String, TD as TDConnection) As Recordset
Dim Com As Command = TD.Command
Com.CommandText = Qry
GetRecSet = Com.Execute
GetRecSet.First()
End Function