try {
System.out.println("Initializing database...");
db = new Database("D:\\temp");
Transaction txn = db.beginTransaction();
BTree testTree = null;
IntKey testKey = null;
Object o = null;
try {
System.out.println("Initializing BTree...");
testTree = db.openBTree("txn.btree", BTreeType.BTREE);
testKey = new IntKey(1);
//store
System.out.println("Testing store...");
testTree.store(testKey, "Test Value".getBytes());
//lookup
System.out.println("Testing lookup...");