> + catch (SQLException e){
> + System.out.format("SQLException: %s%n", e.getMessage());
> + System.out.format("SQLState: %s%n", e.getSQLState());
> + System.out.format("VendorError: %s%n", e.getErrorCode());
> + e.printStackTrace();
> +
> + return false;
> + }
> + finally {
> + // Release resources in reverse order of creation.
> +
> + if (rs != null) {
> + try {
> + rs.close();
> + }
> + catch (SQLException sqlEx) {
Just `catch (SQLException ignored) {`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/21/files#r6903256