我们的组织正在使用 UniObjects for .NET,但 CD 似乎丢失了。我需要弄清楚如何读写 Universe 中的文件。请注意该程序是用 VB.NET 编写的
Dim uniSession As UniSession
Private DATABASE_IDENTIFIER As String = "uvcs"
uniSession = UniObjects.OpenSession(_hostname, _username, _password, _account, DATABASE_IDENTIFIER)
' Clear the already existing LICENCE_STATUS table
Dim nepiLicenceStatusFile As UniFile = uniSession.CreateUniFile("LICENCE_STATUS")
nepiLicenceStatusFile.Open()
nepiLicenceStatusFile.ClearFile()
' Insert new values in the LICENCE_STATUS table???
' Read values from the LICENCE_STATUS table???
我需要弄清楚如何插入新值,并从 LICENCE_STATUS 表中读取值。这里有人可以帮助我吗?