Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 IRfcFunction 来从 SAP 获取某些值到我的 .net 应用程序。这些细节在 IRfcTable 结构中。我想知道如何将 IRfcTable 中的这些内容移动到 SQL Server 表中。
谢谢你。
您可以迭代 IRfcTable 表中返回的行,获取每行的值并将其手动插入到 SQL Server 表中。
for (var i = 0; i < rfcTable.RowCount; ++i) { var fieldValue = rfcTable[i].GetString("FIELD_NAME"); // get other fields values // inert into SQL Server table according to your application logic }