• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SailConnection类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.openrdf.sail.SailConnection的典型用法代码示例。如果您正苦于以下问题:Java SailConnection类的具体用法?Java SailConnection怎么用?Java SailConnection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SailConnection类属于org.openrdf.sail包,在下文中一共展示了SailConnection类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: loadTestStatements

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
private static void loadTestStatements() throws Exception {
    final ValueFactory vf = sail.getValueFactory();

    final SailConnection sailConn = sail.getConnection();
    sailConn.begin();
    sailConn.addStatement(vf.createURI("urn:Alice"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:Bob"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:Charlie"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:David"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:Eve"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:Frank"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:George"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));
    sailConn.addStatement(vf.createURI("urn:Hillary"), vf.createURI("urn:likes"), vf.createURI("urn:icecream"));

    sailConn.addStatement(vf.createURI("urn:Alice"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:Bob"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:Charlie"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:David"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:Eve"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:Frank"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:blue"));
    sailConn.addStatement(vf.createURI("urn:George"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:green"));
    sailConn.addStatement(vf.createURI("urn:Hillary"), vf.createURI("urn:hasEyeColor"), vf.createURI("urn:brown"));
    sailConn.commit();
    sailConn.close();
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:26,代码来源:QueryBenchmarkRunIT.java


示例2: testGetStatements

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
@Test
public void testGetStatements() throws SailException {
    final SailConnection con = cas.getConnection();
    try {
        con.begin();

        Assert.assertTrue(hasStatement(con, u1, p1, l1));
        Assert.assertFalse(hasStatement(con, u2, p2, l2));

        con.commit();
    } catch (final Throwable t) {
        con.rollback();
        throw t;
    } finally {
        con.close();
    }
}
 
开发者ID:apache,项目名称:marmotta,代码行数:18,代码来源:ContextAwareSailTest.java


示例3: testGetContextIDs

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
@Test
public void testGetContextIDs() throws SailException {
    final SailConnection con = cas.getConnection();
    try {
        con.begin();

        final CloseableIteration<? extends Resource, SailException> cid = con.getContextIDs();
        try {
            assertTrue(cid.hasNext());
            assertThat(cid.next(), CoreMatchers.is(c1));
            assertFalse(cid.hasNext());
        } finally {
            cid.close();
        }

        con.commit();
    } catch (final Throwable t) {
        con.rollback();
        throw t;
    } finally {
        con.close();
    }
}
 
开发者ID:apache,项目名称:marmotta,代码行数:24,代码来源:ContextAwareSailTest.java


示例4: initInference

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
void initInference(SailConnection conn, ValueFactory vf) throws SailException {
    synchronized (this) {
        if (toSub == null) {
            boolean done = false;
            try {
                toSub = new HashMap<String, Collection<String>>();
                toSuper = new HashMap<String, String>();
                for (IndexConfiguration config: indexConfigurations.values()) {
                    String type = config.getMatchType();
                    initInference(conn, vf, type);
                }
                done = true;
            } finally {
                if (!done) {
                    //Don't leave half configured information one failure:
                    toSub = null;
                    toSuper = null;
                }
            }
        }
    }
}
 
开发者ID:meshnetinc,项目名称:gmantic,代码行数:23,代码来源:ElasticSearchIndexerSettings.java


示例5: getConnectionInternal

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Returns a wrapper for the Sail connections of the federation members.
 * 
 * TODO: currently opens connections to *all* federation members,
 *       should better use lazy initialization of the connections.
 *       
 * @return the Sail connection wrapper.
 */
@Override
protected SailConnection getConnectionInternal() throws SailException {
	
	if (!this.initialized)
		throw new IllegalStateException("Sail has not been initialized.");
	
	return new FederationSailConnection(this);
}
 
开发者ID:goerlitz,项目名称:rdffederator,代码行数:17,代码来源:FederationSail.java


示例6: cleanupUnsupported

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Cleanup inferred triples that are no longer supported by any justification.
 */
private void cleanupUnsupported(KiWiReasoningConnection connection) throws SQLException, SailException {
    updateTaskStatus("cleaning up unsupported triples");

    int count = 0, total = 0;

    startTask("Unsupported Triple Cleaner", TASK_GROUP);
    updateTaskStatus("loading unsupported triples");

    CloseableIteration<KiWiTriple,SQLException> tripleIterator = connection.listUnsupportedTriples();
    try {
        if(tripleIterator.hasNext()) {

            updateTaskStatus("deleting unsupported triples");
            SailConnection tc = store.getConnection();
            KiWiSailConnection ic = getWrappedConnection(tc);
            try {
                tc.begin();
                while(tripleIterator.hasNext()) {
                    ic.removeInferredStatement(tripleIterator.next());
                    count++;
                }
                log.debug("removed {} unsupported triples",count);
                tc.commit();
            } catch(SailException ex) {
                ic.rollback();
                throw ex;
            } finally {
                ic.close();
            }
        }
    } finally {
        Iterations.closeCloseable(tripleIterator);

    }
}
 
开发者ID:apache,项目名称:marmotta,代码行数:39,代码来源:ReasoningEngine.java


示例7: getWrappedConnection

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Return the KiWiSailConnection underlying a given sail connection. The method will follow wrapped
 * connections until it finds the KiWiSailConnection, or otherwise throws a SailException.
 * @param connection
 * @return
 */
private KiWiSailConnection getWrappedConnection(SailConnection connection) throws SailException {
    SailConnection it = connection;
    while(it instanceof SailConnectionWrapper) {
        it = ((SailConnectionWrapper) it).getWrappedConnection();
        if(it instanceof KiWiSailConnection) {
            return (KiWiSailConnection) it;
        }
    }
    throw new SailException("no underlying KiWiSailConnection found for connection");
}
 
开发者ID:apache,项目名称:marmotta,代码行数:17,代码来源:ReasoningEngine.java


示例8: getEntry

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Return the cache entry for the given resource, or null if this entry does not exist.
 *
 *
 * @param resource the resource to retrieve the cache entry for
 * @return
 */
@Override
public CacheEntry getEntry(URI resource) {
    try {
        try(LDCachingKiWiPersistenceConnection dbcon = persistence.getConnection()) {

            // load cache entry from database
            CacheEntry ce = dbcon.getCacheEntry(resource.stringValue());

            // if entry exists, load triples for the resource from the cache context of the repository
            if(ce != null) {
                SailConnection con = store.getConnection();
                try {
                    con.begin();

                    Model triples = new TreeModel();
                    ModelCommons.add(triples,con.getStatements(resource,null,null,true,store.getValueFactory().createURI(cacheContext)));
                    ce.setTriples(triples);

                    con.commit();
                } catch(SailException ex) {
                    con.rollback();
                } finally {
                    con.close();
                }
            }
            return ce;

        }

    } catch (SailException | SQLException e) {
        log.error("could not retrieve cached triples from repository",e);
    }

    return null;
}
 
开发者ID:apache,项目名称:marmotta,代码行数:43,代码来源:LDCachingKiWiBackend.java


示例9: putEntry

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Update the cache entry for the given resource with the given entry.
 *
 * @param resource the resource to update
 * @param entry    the entry for the resource
 */
@Override
public void putEntry(URI resource, CacheEntry entry) {
    try {
        try(LDCachingKiWiPersistenceConnection dbcon = persistence.getConnection()) {

            // store cache entry in database
            dbcon.removeCacheEntry(resource.stringValue());

            // update triples in cache
            SailConnection con = store.getConnection();
            try {
                con.begin();

                con.removeStatements(resource, null, null, store.getValueFactory().createURI(cacheContext));
                for(Statement stmt : entry.getTriples()) {
                    con.addStatement(stmt.getSubject(), stmt.getPredicate(), stmt.getObject(), store.getValueFactory().createURI(cacheContext));
                }

                con.commit();

                entry.setResource(store.getValueFactory().createURI(resource.stringValue()));

                dbcon.storeCacheEntry(entry);
            } catch(SailException ex) {
                con.rollback();
            } finally {
                con.close();
            }

        }

    } catch (SailException | SQLException e) {
        log.error("could not retrieve cached triples from repository",e);
    }

}
 
开发者ID:apache,项目名称:marmotta,代码行数:43,代码来源:LDCachingKiWiBackend.java


示例10: removeEntry

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Remove the cache entry for the given resource if it exists. Does nothing otherwise.
 *
 * @param resource the resource to remove the entry for
 */
@Override
public void removeEntry(URI resource) {
    try {
        try(LDCachingKiWiPersistenceConnection dbcon = persistence.getConnection()) {

            // store cache entry in database
            dbcon.removeCacheEntry(resource.stringValue());

            // update triples in cache
            SailConnection con = store.getConnection();
            try {
                con.begin();

                con.removeStatements(resource, null, null, store.getValueFactory().createURI(cacheContext));

                con.commit();
            } catch(SailException ex) {
                con.rollback();
            } finally {
                con.close();
            }

        }

    } catch (SailException | SQLException e) {
        log.error("could not remove cached triples from repository",e);
    }
}
 
开发者ID:apache,项目名称:marmotta,代码行数:34,代码来源:LDCachingKiWiBackend.java


示例11: clear

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Clear all entries in the cache backend.
 */
@Override
public void clear() {
    try {
        try(LDCachingKiWiPersistenceConnection dbcon = persistence.getConnection()) {

            // list all entries and remove them
            CloseableIteration<KiWiCacheEntry, SQLException> entries = dbcon.listAll();
            while (entries.hasNext()) {
                dbcon.removeCacheEntry(entries.next());
            }

            // update triples in cache
            SailConnection con = store.getConnection();
            try {
                con.begin();

                con.removeStatements((Resource) null, null, null, store.getValueFactory().createURI(cacheContext));

                con.commit();
            } catch(SailException ex) {
                con.rollback();
            } finally {
                con.close();
            }

        }

    } catch (SailException | SQLException e) {
        log.error("could not remove cached triples from repository",e);
    }

}
 
开发者ID:apache,项目名称:marmotta,代码行数:36,代码来源:LDCachingKiWiBackend.java


示例12: getWrappedResourceConnection

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
private static ResourceConnection getWrappedResourceConnection(SailConnection connection) {
    if(connection instanceof ResourceConnection) {
        return (ResourceConnection)connection;
    } else if(connection instanceof SailConnectionWrapper) {
        return getWrappedResourceConnection(((SailConnectionWrapper) connection).getWrappedConnection());
    } else {
        return null;
    }

}
 
开发者ID:apache,项目名称:marmotta,代码行数:11,代码来源:ResourceUtils.java


示例13: hasStatement

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
protected static boolean hasStatement(SailConnection con, Resource subj,
URI pred, Value object, Resource... contexts) throws SailException {
    final CloseableIteration<? extends Statement, SailException> stmts = con.getStatements(subj, pred, object, true, contexts);
    try {
        return stmts.hasNext();
    } finally {
        stmts.close();
    }
}
 
开发者ID:apache,项目名称:marmotta,代码行数:10,代码来源:AbstractContextTest.java


示例14: getBaseSailConnection

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
private BigdataSail.BigdataSailConnection getBaseSailConnection(SailConnection con) {
    SailConnection wrapped = con;
    while(wrapped instanceof SailConnectionWrapper) {
        wrapped = ((SailConnectionWrapper) wrapped).getWrappedConnection();
    }
    if(wrapped instanceof BigDataSesame27Sail.BigDataSesame27SailConnection) {
        return ((BigDataSesame27Sail.BigDataSesame27SailConnection) wrapped).getWrapped();
    }
    if(wrapped instanceof BigdataSail.BigdataSailConnection) {
        return (BigdataSail.BigdataSailConnection) wrapped;
    }
    return null;
}
 
开发者ID:apache,项目名称:marmotta,代码行数:14,代码来源:BigDataSesame27Repository.java


示例15: RyaSailRepositoryConnection

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
protected RyaSailRepositoryConnection(SailRepository repository, SailConnection sailConnection) {
    super(repository, sailConnection);
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:4,代码来源:RyaSailRepositoryConnection.java


示例16: getConnectionInternal

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
@Override
protected SailConnection getConnectionInternal() throws SailException {
    return new RdfCloudTripleStoreConnection(this, conf, VF);
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:5,代码来源:RdfCloudTripleStore.java


示例17: userNotAddedCanNotInsert

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Ensure a user that has not been added to the Rya instance can not interact with it.
 */
@Test
public void userNotAddedCanNotInsert() throws Exception {
    final String user = testInstance.createUniqueUser();
    final SecurityOperations secOps = super.getConnector().securityOperations();

    final RyaClient userAClient = AccumuloRyaClientFactory.build(
            new AccumuloConnectionDetails(ADMIN_USER, ADMIN_USER.toCharArray(), getInstanceName(), getZookeepers()),
            super.getClusterInstance().getCluster().getConnector(ADMIN_USER, ADMIN_USER));

    // Install the instance of Rya.
    userAClient.getInstall().install(getRyaInstanceName(), InstallConfiguration.builder().build());

    // Create the user that will not be added to the instance of Rya, but will try to scan it.
    secOps.createLocalUser(user, new PasswordToken(user));

    //Try to add a statement the Rya instance with the unauthorized user. This should fail.
    boolean securityExceptionThrown = false;

    Sail sail = null;
    SailConnection sailConn = null;
    try {
        final AccumuloRdfConfiguration userCConf = makeRyaConfig(getRyaInstanceName(), user, user, getInstanceName(), getZookeepers());
        sail = RyaSailFactory.getInstance(userCConf);
        sailConn = sail.getConnection();

        final ValueFactory vf = sail.getValueFactory();
        sailConn.addStatement(vf.createURI("urn:Alice"), vf.createURI("urn:talksTo"), vf.createURI("urn:Bob"));

    } catch(final RuntimeException e) {
        final Throwable cause = e.getCause();
        if(cause instanceof AccumuloSecurityException) {
            securityExceptionThrown = true;
        }
    } finally {
        if(sailConn != null) {
            sailConn.close();
        }
        if(sail != null) {
            sail.shutDown();
        }
    }

    assertTrue(securityExceptionThrown);
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:48,代码来源:AccumuloAddUserIT.java


示例18: userAddedCanInsert

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Ensure a user that has been added to the Rya instance can interact with it.
 */
@Test
public void userAddedCanInsert() throws Exception {
    final String user = testInstance.createUniqueUser();
    final SecurityOperations secOps = super.getConnector().securityOperations();

    final RyaClient userAClient = AccumuloRyaClientFactory.build(
            new AccumuloConnectionDetails(ADMIN_USER, ADMIN_USER.toCharArray(), getInstanceName(), getZookeepers()),
            super.getClusterInstance().getCluster().getConnector(ADMIN_USER, ADMIN_USER));

    // Create the user that will not be added to the instance of Rya, but will try to scan it.
    secOps.createLocalUser(user, new PasswordToken(user));

    // Install the instance of Rya.
    userAClient.getInstall().install(getRyaInstanceName(), InstallConfiguration.builder().build());

    // Add the user.
    userAClient.getAddUser().get().addUser(getRyaInstanceName(), user);

    // Try to add a statement to the Rya instance. This should succeed.
    Sail sail = null;
    SailConnection sailConn = null;

    try {
        final AccumuloRdfConfiguration userDConf = makeRyaConfig(getRyaInstanceName(), user, user, getInstanceName(), getZookeepers());
        sail = RyaSailFactory.getInstance(userDConf);
        sailConn = sail.getConnection();

        final ValueFactory vf = sail.getValueFactory();
        sailConn.begin();
        sailConn.addStatement(vf.createURI("urn:Alice"), vf.createURI("urn:talksTo"), vf.createURI("urn:Bob"));
        sailConn.close();

    } finally {
        if(sailConn != null) {
            sailConn.close();
        }
        if(sail != null) {
            sail.shutDown();
        }
    }
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:45,代码来源:AccumuloAddUserIT.java


示例19: removedUserCanNotInsert

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
/**
 * Ensure a user that has been removed from the Rya instance can not interact with it.
 */
@Test
public void removedUserCanNotInsert() throws Exception {
    final String adminUser = testInstance.createUniqueUser();
    final String user = testInstance.createUniqueUser();
    final SecurityOperations secOps = super.getConnector().securityOperations();

    // Create the user that will install the instance of Rya.
    secOps.createLocalUser(adminUser, new PasswordToken(adminUser));
    secOps.grantSystemPermission(adminUser, SystemPermission.CREATE_TABLE);

    final RyaClient userAClient = AccumuloRyaClientFactory.build(
            new AccumuloConnectionDetails(adminUser, adminUser.toCharArray(), getInstanceName(), getZookeepers()),
            super.getClusterInstance().getCluster().getConnector(adminUser, adminUser));

    // Create the user that will be added to the instance of Rya.
    secOps.createLocalUser(user, new PasswordToken(user));

    final RyaClient userCClient = AccumuloRyaClientFactory.build(
            new AccumuloConnectionDetails(user, user.toCharArray(), getInstanceName(), getZookeepers()),
            super.getClusterInstance().getCluster().getConnector(user, user));

    // Install the instance of Rya.
    userAClient.getInstall().install(getRyaInstanceName(), InstallConfiguration.builder().build());

    // Add userC.
    userAClient.getAddUser().get().addUser(getRyaInstanceName(), user);

    // Remove userA.
    userCClient.getRemoveUser().get().removeUser(getRyaInstanceName(), adminUser);

    // Show that userA can not insert anything.
    boolean securityExceptionThrown = false;

    Sail sail = null;
    SailConnection sailConn = null;
    try {
        final AccumuloRdfConfiguration userAConf = makeRyaConfig(getRyaInstanceName(), adminUser, adminUser, getInstanceName(), getZookeepers());
        sail = RyaSailFactory.getInstance(userAConf);
        sailConn = sail.getConnection();

        final ValueFactory vf = sail.getValueFactory();
        sailConn.addStatement(vf.createURI("urn:Alice"), vf.createURI("urn:talksTo"), vf.createURI("urn:Bob"));

    } catch(final RuntimeException e) {
        final Throwable cause = e.getCause();
        if(cause instanceof AccumuloSecurityException) {
            securityExceptionThrown = true;
        }
    } finally {
        if(sailConn != null) {
            sailConn.close();
        }
        if(sail != null) {
            sail.shutDown();
        }
    }

    assertTrue(securityExceptionThrown);
}
 
开发者ID:apache,项目名称:incubator-rya,代码行数:63,代码来源:AccumuloRemoveUserIT.java


示例20: createConnection

import org.openrdf.sail.SailConnection; //导入依赖的package包/类
@Override
public SailConnection createConnection() throws SailException {
  try {
    Connection db = getConnection();
    db.setAutoCommit(true);
    if (db.getTransactionIsolation() != TRANSACTION_READ_COMMITTED) {
      db.setTransactionIsolation(TRANSACTION_READ_COMMITTED);
    }
    TripleManager tripleManager = new TripleManager();
    GeneralDBTripleRepository s = new PostGISTripleRepository();
    s.setTripleManager(tripleManager);
    s.setValueFactory(vf);
    s.setConnection(db);
    s.setBNodeTable(bnodeTable);
    s.setURITable(uriTable);
    s.setLiteralTable(literalTable);
    s.setIdSequence(ids);
    DefaultSailChangedEvent sailChangedEvent = new DefaultSailChangedEvent(sail);
    s.setSailChangedEvent(sailChangedEvent);
    TableFactory tables = createTableFactory();
    TransTableManager trans = createTransTableManager();
    trans.setIdSequence(ids);
    tripleManager.setTransTableManager(trans);
    trans.setBatchQueue(tripleManager.getQueue());
    trans.setSailChangedEvent(sailChangedEvent);
    trans.setConnection(db);
    trans.setTemporaryTableFactory(tables);
    trans.setStatementsTable(tripleTableManager);
    trans.setFromDummyTable(getFromDummyTable());
    trans.initialize();
    s.setTransaction(trans);
    GeneralDBQueryBuilderFactory bfactory = createQueryBuilderFactory();
    bfactory.setValueFactory(vf);
    bfactory.setUsingHashTable(hashManager != null);
    s.setQueryBuilderFactory(bfactory);

    GeneralDBConnection conn = new GeneralDBConnection(sail, s);
    conn.setNamespaces(namespaces);
    GeneralDBEvaluationFactory efactory = new PostGISEvaluationFactory();
    efactory.setQueryBuilderFactory(bfactory);
    efactory.setRdbmsTripleRepository(s);
    efactory.setIdSequence(ids);
    conn.setRdbmsEvaluationFactory(efactory);
    GeneralDBQueryOptimizer optimizer = createOptimizer();
    GeneralDBSelectQueryOptimizerFactory selectOptimizerFactory =
        createSelectQueryOptimizerFactory();
    selectOptimizerFactory.setTransTableManager(trans);
    selectOptimizerFactory.setValueFactory(vf);
    selectOptimizerFactory.setIdSequence(ids);
    optimizer.setSelectQueryOptimizerFactory(selectOptimizerFactory);
    optimizer.setValueFactory(vf);
    optimizer.setBnodeTable(bnodeTable);
    optimizer.setUriTable(uriTable);
    optimizer.setLiteralTable(literalTable);
    optimizer.setHashTable(hashTable);
    conn.setRdbmsQueryOptimizer(optimizer);
    conn.setLockManager(lock);
    return conn;
  } catch (SQLException e) {
    throw new RdbmsException(e);
  }
}
 
开发者ID:esarbanis,项目名称:strabon,代码行数:63,代码来源:PostGISConnectionFactory.java



注:本文中的org.openrdf.sail.SailConnection类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TaggerConfig类代码示例发布时间:2022-05-23
下一篇:
Java DirectoryDownloaderImpl类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap