Question

I have an SQL query executed by:

ResultSet resultSet = preparedStatement.executeQuery();

while( resultSet.next() ){
     // do some stuff
}

Is there a way to stop the execution and do some code after let's say 2 minutes of execution?

Thanks

Était-ce utile?

La solution

You can set a timeout on executing a query. SQLException will be thrown if the query doesn't complete in time and times out:

preparedstatement.setQueryTimeout(seconds);
ResultSet resultSet = preparedStatement.executeQuery();

while( resultSet.next() ){
     // do some stuff
}

Have a look at setQueryTimeout documentation

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top