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

org.firebirdsql.pool.PingablePooledConnection Maven / Gradle / Ivy

There is a newer version: 2.2.15
Show newest version
package org.firebirdsql.pool;

import java.sql.Connection;
import java.sql.SQLException;

import javax.sql.StatementEventListener;

@Deprecated
public class PingablePooledConnection extends AbstractPingablePooledConnection {

	protected PingablePooledConnection(Connection connection,
			boolean statementPooling, int maxStatements, boolean keepStatements, PooledConnectionQueue owningQueue)
			throws SQLException {
		super(connection, statementPooling, maxStatements, keepStatements, owningQueue);
	}

	public PingablePooledConnection(Connection connection,
			String pingStatement, int pingInterval, boolean statementPooling,
			int maxStatements, boolean keepStatements, PooledConnectionQueue owningQueue) throws SQLException {
		super(connection, pingStatement, pingInterval, statementPooling, maxStatements, keepStatements, owningQueue);
	}

    public void addStatementEventListener(StatementEventListener arg0) {
		throw new UnsupportedOperationException("Not yet implemented");
	}

	public void removeStatementEventListener(StatementEventListener arg0) {
		throw new UnsupportedOperationException("Not yet implemented");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy