1. basic simple jsp/bean/servlet cms mysql datasource coderanch.com |
2. Jboss 5 - @Resource dataSource versus direct lookup in Session Bean coderanch.com |
3. Using datasource for login bean & login page? coderanch.comI happened to see this code from one of the books "Making use of JSP", and is sort of what I need for the login bean for my java page: import java.io.*; import java.sql.*; public class BankAccount { private String sAccountID=" "; private String sPin=" "; private boolean AccountValidate; Connection connect = null; Statement state = null; ResultSet result = null; ... |