0

我正在将通过 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
4

1 回答 1

0

经过一番工作,我的头撞到了墙上,我想出了以下解决方案:

static TDAPIOLELib.Recordset GetRecSet(String Qry, TDAPIOLELib.TDConnection TD)
        {

            TDAPIOLELib.Command Com;
            Com = TD.Command as TDAPIOLELib.Command;
            Com.CommandText = Qry;

            TDAPIOLELib.Recordset RecSet = Com.Execute() as TDAPIOLELib.Recordset;
            return RecSet;

        }

它似乎完成了这项工作。

于 2009-10-11T12:09:49.663 回答