DtoEngineInformation Object
DTO2 only: An object representing information about the database engine.
Properties
Methods
None
Remarks
You can obtain a DtoEngineInformation object through the properties of the DtoSession Object.
Example
’ Instantiate session and connect
Dim my_session as new DtoSession
Dim result as DtoResult
result = my_session.Connect("myserver", "username", "password")
 
’ Get engine information from session
Dim my_engineInfo as DtoEngineInformation
Set my_engineInfo = my_session.EngineInformation
 
’ Now get the client type from the engine info object
clientType = my_engineInfo.ServerClientType
See Also
DtoSession Object