All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.guyi.ipojo.module.h2.datasource.NoCloseConnection Maven / Gradle / Ivy

The newest version!
package tech.guyi.ipojo.module.h2.datasource;

import org.h2.jdbc.JdbcConnection;

import java.sql.SQLException;
import java.util.Properties;

public class NoCloseConnection extends JdbcConnection {

    public NoCloseConnection(String url, Properties properties) throws SQLException {
        super(url, properties);
    }

    @Override
    public void close() throws SQLException {
        this.commit();
    }

    public void realClose() throws SQLException {
        super.close();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy