jsp学习笔记(六)

package bean;
    import java.util.ArrayList;
    import dao.DBOperation;
    /**
    * <p>用户业务处理类</p>
    */
    public class UserBean {
      /**
      * <p>获得登入用户信息</p>
      * @return
      */
      public ArrayList getLoginUser(String sql) {
		DBOperation op = new DBOperation();
        ArrayList al = op.queryReturnList(sql);
        if(al.size()>0) {
          return (ArrayList) al.get(0);
        }
        return null;
      }
      /**
      * <p>更新、添加、删除用户信息</p>
      * @return
      */
      public boolean updateUser(String sql) {
		DBOperation op = new DBOperation();
        return op.insertDeleteUpdate(sql);
      }

你可能感兴趣的:(java,DAO,sql,jsp,bean)