
org.postgresql.ds.jdbc4.AbstractJdbc4PooledConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of postgresql Show documentation
Show all versions of postgresql Show documentation
PostgreSQL JDBC Driver JDBC4
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2011, PostgreSQL Global Development Group
*
*
*-------------------------------------------------------------------------
*/
package org.postgresql.ds.jdbc4;
import java.sql.Connection;
import java.sql.SQLFeatureNotSupportedException;
import javax.sql.StatementEventListener;
import org.postgresql.ds.jdbc23.AbstractJdbc23PooledConnection;
public abstract class AbstractJdbc4PooledConnection extends AbstractJdbc23PooledConnection
{
public AbstractJdbc4PooledConnection(Connection con, boolean autoCommit, boolean isXA)
{
super(con, autoCommit, isXA);
}
public void removeStatementEventListener(StatementEventListener listener)
{
}
public void addStatementEventListener(StatementEventListener listener)
{
}
public java.util.logging.Logger getParentLogger() throws SQLFeatureNotSupportedException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "getParentLogger()");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy