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

org.firebirdsql.jdbc.FBStatement Maven / Gradle / Ivy

There is a newer version: 2.2.15
Show newest version
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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy