738739740741742743744745746747748
while (ds.next()) { assertEquals(true, ds.getRow().getValue(0)); } ds.close(); dc = Converters.addTypeConverter(dc, col, new StringToIntegerConverter()); ds = dc.executeQuery(q); while (ds.next()) { assertEquals(1, ds.getRow().getValue(0)); }
675676677678679680681682683684685
651652653654655656657658659660661