Package org.apache.harmony.luni.util

Examples of org.apache.harmony.luni.util.NotImplementedException


    public RowSet createShared() throws SQLException {
        throw new NotImplementedException();
    }

    public void execute(Connection conn) throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here


    public void execute(Connection conn) throws SQLException {
        throw new NotImplementedException();
    }

    public int[] getKeyColumns() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public int[] getKeyColumns() throws SQLException {
        throw new NotImplementedException();
    }

    public ResultSet getOriginal() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public ResultSet getOriginalRow() throws SQLException {
        if (currentRow == null)
            throw new SQLException();
        // ResultSet originalRow.s
        throw new NotImplementedException();
    }
View Full Code Here

    public int getPageSize() {
        return pageSize;
    }

    public RowSetWarning getRowSetWarnings() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public String getTableName() throws SQLException {
        return tableName;
    }

    public boolean nextPage() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

        // TODO set other meta info when necessary
        this.meta = rowSetMetaData;
    }

    public boolean previousPage() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public boolean previousPage() throws SQLException {
        throw new NotImplementedException();
    }

    public void release() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public void release() throws SQLException {
        throw new NotImplementedException();
    }

    public void restoreOriginal() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

    public void restoreOriginal() throws SQLException {
        throw new NotImplementedException();
    }

    public void rollback() throws SQLException {
        throw new NotImplementedException();
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.luni.util.NotImplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.