Package org.apache.jena.jdbc.results.metadata

Examples of org.apache.jena.jdbc.results.metadata.AskResultsMetadata


     */
    public AskResults(JenaStatement statement, boolean result, boolean commit) throws SQLException {
        super(statement);
        this.result = result;
        this.needsCommit = commit;
        this.metadata = statement.getJenaConnection().applyPostProcessors(new AskResultsMetadata(this));
        this.columnLabel = this.metadata.getColumnLabel(AskResultsMetadata.COLUMN_INDEX_ASK);
    }
View Full Code Here

TOP

Related Classes of org.apache.jena.jdbc.results.metadata.AskResultsMetadata

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.