Optum Interview Question

How to close connections on exception

Interview Answers

Anonymous

Nov 7, 2019

You can use try with resource, so that it will close the connection if it is success or failure.

Anonymous

May 31, 2019

You can use finally block to close exceptions generally catch block should be fine but you need to make sure that connection gets closed everytime

1