We have a application that uses BDE connected to an Oracle DB.
I use TQuery for the SQL queries, and it connects to TDatabase, we are not professional programmers, and we don't know what happens under the hood.
Our network is unstable, we have an issue with packet loss.
When the problem occurs, our application disconnects from the DB server, or fails to finish the current query.
What is the best way to handle this?
Our networking team is currently working to fix the root issue, and we have changed the code to reconnect to the database when we have a failure. We are running into an issue with the number of open sessions on our database server.
Is there any solution for this?
It appears to be a common issue for us.