Hi!
We have an application that for any number of reasons still uses BDESession and BDE to connect to the database (ORA8i).
So, we have someting like ORA BDESession APP
On a new module, it's required connection to remote databases using only the direct (NET) method.
So, I create a new connection using TOraSession, but when changing the options to NET the main connection (using bde/bdesession) closes, when it should remain open.
-- sample of the new code --
Self.FcnORCL := TOraSession.Create(nil);
Self.FcnORCL.Options.Net := True; <-- main db connection closes when executing this
Self.FcnORCL.Options.NeverConnect := True;
--- end sample ---
There's any way to solve/workaround this without having to change the old code?
Thanks!