Package org.apache.jena.jdbc.tdb.metadata

Examples of org.apache.jena.jdbc.tdb.metadata.TDBDatasetMetadata


     * @param compatibilityLevel JDBC compatability level, see {@link JdbcCompatibility}
     * @throws SQLException
     */
    public TDBConnection(Dataset ds, int holdability, boolean autoCommit, int compatibilityLevel) throws SQLException {
        super(ds, holdability, autoCommit, Connection.TRANSACTION_SERIALIZABLE, compatibilityLevel);
        this.metadata = new TDBDatasetMetadata(this);
    }
View Full Code Here

TOP

Related Classes of org.apache.jena.jdbc.tdb.metadata.TDBDatasetMetadata

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.