0, COMPRESSION, maxNumRecs, maxBlockFileSize, !MMAP, -1, LOG_LEVEL));
Database db = database.getDatabaseManager().createDatabase("test", 3);
for (int i = 1000; i < 2000; i++) {
DatabaseInsertGroup ir = db.createInsertGroup();
ir.addInsert(0, (i + "").getBytes(), (i + "").getBytes());
ir.addInsert(1, (i + "").getBytes(), (i + "").getBytes());
ir.addInsert(2, (i + "").getBytes(), (i + "").getBytes());
db.insert(ir, null);
}