package examples.dbo; import java.sql.*; import java.util.*; import fc.util.*; public class Getall extends Test { public void test(Args myargs, Connection con) throws Exception { List list = mollytestMgr.getAll(con); System.out.println(">>> Retrieved " + list.size() + " rows"); if (list.size() > 0) { System.out.println(list); } } }