Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 63203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:35:45+00:00 2026-05-10T18:35:45+00:00

Connection.close() may throw SqlException , but I have always assumed that it is safe

  • 0

Connection.close() may throw SqlException, but I have always assumed that it is safe to ignore any such exceptions (and I have never seen code that does not ignore them).

Normally I would write:

 try{     connection.close();  }catch(Exception e) {} 

Or

 try{     connection.close();  }catch(Exception e) {      logger.log(e.getMessage(), e);   } 

The question is:

  1. Is it bad practice (and has anyone had problems when ignoring such exceptions).
  2. When Connection.close() does throw any exception.
  3. If it is bad how should I handle the exception.

Comment:

I know that discarding exceptions is evil, but I’m reffering only to exceptions thrown when closing a connection (and as I’ve seen this is fairly common in this case).

Does anyone know when Connection.close() may throw anything?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:35:45+00:00Added an answer on May 10, 2026 at 6:35 pm

    Actually, what you’re doing is (almost) best practice 🙂 here’s what I saw in Spring’s JdbcUtils.java. So, you might want to add another Catch block.

    /**  * Close the given  ResultSet and ignore any thrown exception.  * This is useful for typical finally blocks in manual  code.  * @param resultSet the  ResultSet to close  * @see javax.resource.cci.ResultSet#close()  */ private void closeResultSet(ResultSet resultSet) {   if (resultSet != null) {     try {       resultSet.close();     }     catch (SQLException ex) {       logger.debug('Could not close  ResultSet', ex);     }     catch (Throwable ex) {       // We don't trust the  driver: It might throw RuntimeException or Error.       logger.debug('Unexpected exception on closing  ResultSet', ex);     }   } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any reason why I should close the connection after a query or
I am trying to close a memcached connection to start a new one. But
Should you always close a DataReader before closing the connection, or is it okay
Are values such as keep-alive , Close , and Upgrade of the Connection: header
#define BUF_SIZE 10 char *html = foo:baa\r\nxxx:yyyy:\r\nLocation:........................................\r\Connection:close\r\n\r\n; char *p = (char*)html, *buf, *pbuf, *tbuf;
Possible Duplicate: Close mysql connection (PHP) Please help me, I not know where add
Is it necessary to close the connection of a tcplistener or tcpclient after every
Why does this port/socket close once a connection has been made by a client?
Can anyone tell me how I close an opened SQL connection inside a Function?
By closed connection I mean that the other end closed it gracefully. I would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.