在BerkeleyDB JE中手动创建序列



我想在BerkeleyDB中创建一个序列,我可以手动操作,但我不知道如何做到这一点。我想要一些类似于SQL序列对象的东西。我在API文档中找到了一个类,但不清楚如何创建一个类。

非常感谢您的帮助!

下面的代码运行良好:

@Test
public void testSequenceCreation() throws ClassNotFoundException {
    EnvironmentConfig econf = EnvironmentConfig.DEFAULT.setAllowCreate(true);
    Environment env = new Environment(envHome, econf);
    StoreConfig sconf = StoreConfig.DEFAULT.setAllowCreate(true);
    EntityStore store = new EntityStore(env, "TestStore", sconf);
    store.setPrimaryConfig(FakeEntity.class, 
            DatabaseConfig.DEFAULT.setAllowCreate(true));
    store.setSequenceConfig("testSequence", SequenceConfig.DEFAULT.setAllowCreate(true));
    Sequence seq = store.getSequence("testSequence");
    Assert.assertEquals(0, seq.get(null, 1));
    Assert.assertEquals(1, seq.get(null, 1));
    Assert.assertEquals(2, seq.get(null, 1));
    store.sync();
    seq.close();
    store.close();
    env.close();        
}

我所要做的就是设置一个配置,然后创建序列。

相关内容

  • 没有找到相关文章

最新更新