我有3张桌子 用户(ID,名称), 课程(ID,名称)和 users_courses(user_id,course_id,成绩)
,我在DbCourse.java中使用了此查询(适用于phpmyadmin)
private final String GET_STUDENT_COURSES = "select * from users_courses where user_id = ? ";
以及我想获取带有课程名称和年级的哈希图的方法
public HashMap<String, Double> getHashMapStudentCourses(User user) {
HashMap<String, Double> studentCourses = new HashMap<>();
try {
ps = con.prepareStatement(GET_STUDENT_COURSES);
ps.setInt(1, user.getId());
rs = ps.executeQuery();
while(rs.next()){
String courseName =(this.get_course(rs.getInt("course_id"))).getCourse_name();
studentCourses.put(courseName,rs.getDouble("grade"));
}
} catch (SQLException ex) {
Logger.getLogger(DbCourse.class.getName()).log(Level.SEVERE, null, ex);
}
return studentCourses;
}
这是get_course方法
public Course get_course(int id) {
try {
ps = con.prepareStatement(GET_COURSE);
ps.setInt(1, id);
rs = ps.executeQuery();
if (rs.first()) {
return new Course(rs.getInt("id"), rs.getString("name"));
}
} catch (SQLException ex) {
Logger.getLogger(DbCourse.class.getName()).log(Level.SEVERE, null, ex);
}
return null;
}
,并且在使用java.sql.SQLException时遇到此异常:找不到列“等级”。 请帮助我不知道错误在哪里
我在while循环内的第二行注释后,我得到stackoverflow异常是什么原因