Jianping Zhu wrote:

> catch (SQLException se){System.out.println("trouble to connect");}//

Change your catch statement--you're throwing away information now.  You may
find helpful debug info...

catch (SQLException se) { System.out.println(se);}
OR
catch (SQLException se) { System.out.println("trouble to connect" + se);}

Alan



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to