个人作业8
今天完成了教师端相关功能,在登录功能中添加了识别区分账号功能,登陆时自动区分学生和教师,学生进入学生端教师进入教师端。
public int login(String userAccount, String userPassword){ HashMap<String, Object> map = new HashMap<>(); // 根据数据库名称,建立连接 Connection connection = JDBCUtils.getConn(); int msg = 0; try { // mysql简单的查询语句。这里是根据user表的userAccount字段来查询某条记录 String sql = "select * from user where userAccount = ?"; if (connection != null){// connection不为null表示与数据库建立了连接 PreparedStatement ps = connection.prepareStatement(sql); if (ps != null){ Log.e(TAG,"账号:" + userAccount); //根据账号进行查询 ps.setString(1, userAccount); // 执行sql查询语句并返回结果集 ResultSet rs = ps.executeQuery(); int count = rs.getMetaData().getColumnCount(); //将查到的内容储存在map里 while (rs.next()){ // 注意:下标是从1开始的 for (int i = 1;i <= count;i++){ String field = rs.getMetaData().getColumnName(i); map.put(field, rs.getString(field)); } } if (map.size()!=0){ StringBuilder s = new StringBuilder(); //寻找密码是否匹配 for (String key : map.keySet()){ if(key.equals("userPassword")){ if(userPassword.equals(map.get(key))){ // msg = 1;//密码正确 String sql1 = "select * from user where userType = ? and userAccount= ?"; // select * from yonghu1 where id=? and name=? and password=? ps = connection.prepareStatement(sql1); ps.setInt(1, 0); ps.setString(2,userAccount); rs = ps.executeQuery(); if(rs.next()){ msg=1; }else{ msg = 4;//密码正确 } connection.close(); ps.close(); } else msg = 2; //密码错误 break; } } }else { Log.e(TAG, "查询结果为空"); msg = 3; } }else { msg = 0; } }else { msg = 0; } }catch (Exception e){ e.printStackTrace(); Log.d(TAG, "异常login:" + e.getMessage()); msg = 0; } return msg; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
2023-05-06 Day16