How to Detect SQL*Net 2.3 or Net8?

CraigJ

Member²
Is there a way using DOA to detect the client that's installed? We need to upgrade all our users to Net8 and an easy way to detect the client installed would be helpful.

TIA
 
The OracleCI unit contains a global boolean variable OCI80Detected, which indicates if Net8 is present. It is only valid after OCI (the Oracle Call Interface) has been initialized, which occurs during the first TOracleSession connection. If you want to know this before making a connection, you can explicitly initialize OCI by calling InitOCI, which is also located in the OracleCI unit.

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