Package org.apache.jena.jdbc.statements

Examples of org.apache.jena.jdbc.statements.DatasetPreparedStatement


            int resultSetHoldability) throws SQLException {
        if (resultSetType == ResultSet.TYPE_SCROLL_SENSITIVE)
            throw new SQLFeatureNotSupportedException("Dataset backed connections do not support scroll sensitive result sets");
        if (resultSetConcurrency != ResultSet.CONCUR_READ_ONLY)
            throw new SQLFeatureNotSupportedException("Dataset backed connections only supports read-only result sets");
        return new DatasetPreparedStatement(sparql, this, resultSetType, ResultSet.FETCH_FORWARD, 0, resultSetHoldability,
                this.getAutoCommit(), this.getTransactionIsolation());
    }
View Full Code Here

TOP

Related Classes of org.apache.jena.jdbc.statements.DatasetPreparedStatement

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.