package examples.dbo; import java.sql.*; import fc.util.*; public class Getbykey extends Test { public void test(Args myargs, Connection con) throws Exception { int uid = Integer.parseInt(myargs.getRequired("uid")); mollytest bean = mollytestMgr.getByKey(con, uid); System.out.println(">>> Retrieved from the database"); System.out.println(bean); } }