sql >> Database >  >> RDS >> Mysql

Geen bewerkingen toegestaan ​​nadat de instructie is gesloten

Maak een Utility-klasse voor verbindingsbeheer om deze op één punt in de hele applicatie te beheren.

Laad de DataSource niet elke keer dat je een nieuwe verbinding nodig hebt.

Voorbeeldcode:

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;
    }

}

Sluit altijd de verbinding en handel deze af in 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. Hoe de prestaties voor bulk-INSERT's naar ODBC-gekoppelde tabellen in Access te verbeteren?

  2. De postgresql.conf, parameter tegelijk verminderen

  3. Verschil in benodigde tijd om InnoDB/MyISAM-records in te voegen

  4. Mac OS Sierra virtualenv (python 2.7) pip install mysqlclient-fout