public void testMapList() throws Exception {
Rows rows = dc.getRows(query, 10, 1) ;
List<Map> results = (List<Map>)rows.toHandle(new MapListHandler()) ;
assertEquals(10, results.size()) ;
Map row = results.get(0);
assertEquals("1", row.get("no1").toString()) ;