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

This MSDN article states that: An isolation level has connection-wide scope, and once set
I have a service that talks to other services on the same machine over
I'm working on something similar to a pastebin (yeah, it's that generic) but allowing
I'm not a software person, but I could really use some advice. I'm writing
I am attempting to have my android phone connect to my servlet and send
Message: Timeout expired. The timeout period elapsed prior to obtaining a connection from the
i use github and have successfully added and synched files on my laptop in
Trying to install roundcube webmail - had some issues related to driver configuration -
I am trying to insert image in my databse .However I dont want to
I need to keep my development trees in sync on different computers, with no

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.