sql >> Database teknologi >  >> RDS >> Mysql

Ingen handlinger tilladt efter lukket erklæring

Opret en Utility-klasse til forbindelsesadministration for at administrere den på et enkelt punkt i hele applikationen.

Indlæs ikke DataSource hver gang du har brug for en ny forbindelse.

Eksempelkode:

public class ConnectionUtil {

    private DataSource dataSource;

    private static ConnectionUtil instance = new ConnectionUtil();

    private ConnectionUtil() {
        try {
            Context initContext = new InitialContext();
            dataSource = (DataSource) initContext.lookup("JNDI_LOOKUP_NAME");
        } catch (NamingException e) {
            e.printStackTrace();
        }
    }

    public static ConnectionUtil getInstance() {
        return instance;
    }

    public Connection getConnection() throws SQLException {
        Connection connection = dataSource.getConnection();
        return connection;
    }

    public void close(Connection connection) throws SQLException {
        if (connection != null && !connection.isClosed()) {
            connection.close();
        }
        connection = null;
    }

}

Luk altid forbindelsen, og håndter den i try-catch-finally

        Connection conn = null;
        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            conn = ConnectionUtil.getInstance().getConnection();

            ...
        } finally {
            if (rs != null) {
                rs.close();
            }
            if (stmt != null) {
                stmt.close();
            }
            if (conn != null) {
                ConnectionUtil.getInstance().close(conn);
            }
        }


  1. Enkel måde at transponere kolonner og rækker i SQL?

  2. 3 måder at sikkerhedskopiere en SQLite-database på

  3. MySQL-streng til DATO/TID eller TIDSSTYKKE

  4. Kom godt i gang med Cloud Firestore til iOS