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

org.sqlite.jdbc4.JDBC4Statement Maven / Gradle / Ivy

There is a newer version: 3.46.1.0
Show newest version
package org.sqlite.jdbc4;

import java.sql.SQLException;
import java.sql.Statement;

import org.sqlite.SQLiteConnection;
import org.sqlite.jdbc3.JDBC3Statement;

public class JDBC4Statement extends JDBC3Statement implements Statement {
    public JDBC4Statement(SQLiteConnection conn) {
        super(conn);
    }

    // JDBC 4
    public  T unwrap(Class iface) throws SQLException {
        // TODO Auto-generated method stub
        return null;
    }

    public boolean isWrapperFor(Class iface) throws SQLException {
        // TODO Auto-generated method stub
        return false;
    }

    public boolean isClosed() throws SQLException {
        // TODO Auto-generated method stub
        return false;
    }

    public void setPoolable(boolean poolable) throws SQLException {
        // TODO Auto-generated method stub
        
    }

    public boolean isPoolable() throws SQLException {
        // TODO Auto-generated method stub
        return false;
    }
    public void closeOnCompletion() throws SQLException {
        // TODO
    }
    public boolean isCloseOnCompletion() throws SQLException {
        // TODO
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy