ShowDOAInfo

kthomas

Member
I'm aware of your ShowDOAInfo procedure which gives a bunch of DOA information in a dialog box. Are there functions available to query individual ShowDOAInfo items?

My objective is this: I've got an about box in an app which lists version numbers for several components and would like to list the DOA version along with them without having to popup another dialog.

Thanks,
-Kent Thomas
 
Originally posted by kthomas:
I'm aware of your ShowDOAInfo procedure which gives a bunch of DOA information in a dialog box


I'm not aware of this procedure, were could I find it?
 
The ShowDOAInfo(Session) procedure shows 3 things:

- The Direct Oracle Access version
- Information about the SQL*Net or Net8 configuration.
- Information about the Oracle Server that the session is connected to.

The first part is contained in the DOAVersion variable.

The second part can be obtained from the global string variable InitOCILog, which is defined in the OracleCI unit. It will only contain information after InitOCI is called (also from the OracleCI unit) or after a session is logged on.

The third part is TOracleSession.ServerVersion. This is the only documented feature mentioned in the post ;)

------------------
Marco Kalter
Allround Automations
 
Back
Top