DocumentMap dbDocHandle = connection.getDocumentMap("WorldJUGs");
//5. Store the data in the database
for(int j=0; j<documentCount; j++){
Document ljug = worldJugs.get(j);
dbDocHandle.store(Integer.toString(j), ljug);
}
//6. Close the connection
connection.close();
}
}