1
我們的組織正在使用UniObjects for .NET,但該CD似乎已丟失。我需要弄清楚如何讀寫Universe中的文件。請注意,程序是用VB.NETUniObjects for .NET - 讀取和寫入UniVerse文件
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表中讀取值。任何人都可以幫助我嗎?