org.firebirdsql.pool.PingablePooledConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird-jdk17 Show documentation
Show all versions of jaybird-jdk17 Show documentation
JDBC Driver for the Firebird RDBMS
package org.firebirdsql.pool;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.StatementEventListener;
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");
}
}