DOA and Intraweb

Bas

Member
For my database connection in an Intraweb application I tried to use DOA (Direct Oracle Access) data access components instead of the BDE data access components. But when I try to connect to the Oracle database I receive the ORA-12560 error (protocol adapter error).
Has anyone some experience with using DOA components with Intraweb applications?

Thanks,

Bas Wiebinga
 
If you set the DesignConnection property of the OracleSession component to false everything works fine.
 
If DesignConnection is True, your design-time connection properties (Connected, LogonUsername, LogonPassword and LogonDatabase) will not be used at run-time. If you attempt to connect such a session without specifying LogonDatabase at run-time, you could indeed get ORA-12560.

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