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