package examples.dbo; import java.sql.*; import fc.util.*; public class Exists extends Test { public void test(Args myargs, Connection con) throws Exception { int uid = Integer.parseInt(myargs.getRequired("uid")); boolean exists = mollytestMgr.exists(con, uid); System.out.println(">>> Exists: " + exists); } }