org.firebirdsql.jdbc.FBStatement 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.jdbc;
import java.sql.*;
import java.util.logging.Logger;
import org.firebirdsql.gds.impl.GDSHelper;
/**
*
* @author Roman Rokytskyy
*/
public class FBStatement extends AbstractStatement {
public FBStatement(GDSHelper c, int rsType, int rsConcurrency, int rsHoldability,
FBObjectListener.StatementListener statementListener) throws SQLException {
super(c, rsType, rsConcurrency, rsHoldability, statementListener);
}
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
throw new FBDriverNotCapableException();
}
}