com.foundationdb.sql.jdbc.xa.jdbc4.AbstractJdbc4XADataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fdb-sql-layer-jdbc Show documentation
Show all versions of fdb-sql-layer-jdbc Show documentation
The FoundationDB SQL Layer Driver for JDBC4
/*-------------------------------------------------------------------------
*
* Copyright (c) 2009-2011, PostgreSQL Global Development Group
*
*-------------------------------------------------------------------------
*/
package com.foundationdb.sql.jdbc.xa.jdbc4;
import java.sql.SQLFeatureNotSupportedException;
import com.foundationdb.sql.jdbc.xa.jdbc3.AbstractJdbc3XADataSource;
public class AbstractJdbc4XADataSource
extends AbstractJdbc3XADataSource
{
public java.util.logging.Logger getParentLogger() throws SQLFeatureNotSupportedException
{
throw com.foundationdb.sql.jdbc.Driver.notImplemented(this.getClass(), "getParentLogger()");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy