Beispiel #1
0
 private static void close(final Statement statement) {
   if (statement != null) {
     try {
       statement.close();
     } catch (SQLException e) {
       LOGGER.error("unexpected error during close statement object " + e.getMessage(), e);
     }
   }
 }