Unfortunately setTimeout is not implemented for JDBC/postgres. Is there some way I can simulate or workaround this? Functionally I want to execute the query and the then break if it takes longer than N seconds
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The "statement_timeout" looks like what you want.
|
|||||||
|
|
One way might be to try running the query in a Timer class. Throw an exception if the Timer ends without a value returned. Hibernate and JDO supply such a construct. Maybe they'd be good alternatives for you. |
||||
|
|
|
What if you were to use c3p0 for your dataSource? It has lots of configurable options, and for cranky databases and networks, for example, acquireRetryAttempts, acquireRetryDelay, and breakAfterAcquireFailure. |
|||
|
|