// store some hashmaps in the database
Map<String, Double> map = new HashMap<String, Double>();
map.put("KEY", 3.0);
map.put("ANOTHERKEY", 4.0);
PersistenceManager persist = new PersistenceManager(driver, database, login, password);
persist.saveObject(map);
Map<String, Double> anotherMap = new HashMap<String, Double>();
anotherMap.put("ANOTHERKEY", 4.0);
persist.saveObject(anotherMap);
Map<String, Double> yetAnotherMap = new HashMap<String, Double>();
yetAnotherMap.put("KEY", 1.0);