Open DataBase & DOA

If both are using the same OCI library, you should be able to open a BDE database and connect a DOA session in any order. I'm afraid I have no explanation for this problem.

------------------
Marco Kalter
Allround Automations
 
I have encounter the same problem:

if :
OracleSession1.Connected := True;
...
Database1.Connected := True;
It runs Ok!

if :
Database1.Connected := True;
...
OracleSession1.Connected := True;
It raise Core40.dll exception!

In Bde I set the Dll to Ora805.dll,
and DOA preference(design time) dll also set to ora805.dll.

Originally posted by mkalter:
If both are using the same OCI library, you should be able to open a BDE database and connect a DOA session in any order. I'm afraid I have no explanation for this problem.

 
Back
Top