I use a TOracleEvent component to receive dbms_pipe messages.
According to the docs, the TOracleEvent duplicates a connection to avoid interfering with the main session.
How can I make sure the duplicated connection is restored after the connection has been broken?
MySession.CheckConnection(true)
works for the main session, but if I attempt
MyEvent.InternalSession.CheckConnection(true)
I get an Access Violation in oran8.dll (and sometimes other dll's).
How should something like this be handled?
- t
According to the docs, the TOracleEvent duplicates a connection to avoid interfering with the main session.
How can I make sure the duplicated connection is restored after the connection has been broken?
MySession.CheckConnection(true)
works for the main session, but if I attempt
MyEvent.InternalSession.CheckConnection(true)
I get an Access Violation in oran8.dll (and sometimes other dll's).
How should something like this be handled?
- t