Map<String, Object> exampleMap2 = new LinkedHashMap<String, Object>();
exampleMap2.put("meta", "model");
exampleMap2.put("couch", "db");
exampleList.add(exampleMap2);
dc.executeUpdate(new InsertInto(table).value("id", 1).value("foo", exampleMap).value("bar", exampleList));
DataSet ds = dc.query().from(table).select("id", "foo", "bar").execute();
assertTrue(ds.next());
Row row = ds.getRow();
assertFalse(ds.next());