vote up -3 vote down star

How to prevent the connection to the oracle server being gets lost if it is kept for some ideal time

flag

79% accept rate
Er, that's one thing? ;-) – Tony Andrews Nov 5 at 11:32
I just added another one also – Sachin Chourasiya Nov 5 at 11:33
OK, but these are two very different and unrelated questions, so you should post them separately. Also, in both cases, more details are required from you to explain what you are trying to do. – Tony Andrews Nov 5 at 11:53
Alright, for the first I am working on an online system where its needs to make sure that the connection should not be lost – Sachin Chourasiya Nov 5 at 12:57
2  
Sachin, this is an issue for the client of your database, but you have given no information about what technology your application is using to connect to the oracle server. In comments you say you are not using JDBC. So then, what are you using? You need to provide more detail than this to get any useful answers. – Zac Thompson Nov 11 at 9:05
show 4 more comments

2 Answers

vote up 0 vote down check

One possible way that I knew to save the database connection from being getting lost is to send a dummy query after the threshhold time, By Threash hold I mean the time after which the connection to the database is expected to become idle or get lost.

Some thing like

Ping_time_to_DB=60

if(Current_time - Last_Ping_time > Ping_time_to_DB)
{
     --send a dummy query like 
       select 1 from dual;
}
link|flag
vote up 0 vote down

If you use the newest JDBC spec 4.0 there is a isValid() method available for a connection that allows you to check if the connection is usable, if not then get a new (reconnect) connection and execute your SQL.

link|flag
Your answer is appreciable but I am not using JDBC. I want to do it in C – Sachin Chourasiya Nov 12 at 7:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.