Обсуждение: PreparedStatement timeouts?

Поиск
Список
Период
Сортировка

PreparedStatement timeouts?

От
"Paul Tomblin"
Дата:
I think something like this was asked recently, but I didn't see an answer:

If I prepare a statement, is there some time after which I can't use
it?  Or does the connection itself time out?
I've been seeing exceptions with connections that sit idle for long
periods of time, and I'm not sure if it's the connection or the
prepared statement that's the problem.

--
House: "Because it doesn't hurt here. Because I don't want to be in
pain, I don't want to be miserable."
Amber: "Well...You can't always get what you want."

Re: PreparedStatement timeouts?

От
Oliver Jowett
Дата:
Paul Tomblin wrote:
> I think something like this was asked recently, but I didn't see an answer:
>
> If I prepare a statement, is there some time after which I can't use
> it?  Or does the connection itself time out?
> I've been seeing exceptions with connections that sit idle for long
> periods of time, and I'm not sure if it's the connection or the
> prepared statement that's the problem.

There's no timeout on the PreparedStatement itself. Probably the
connection is getting dropped by a stateful firewall between the client
and the server after some period of inactivity.

-O