• 大小: 237KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-03-20
  • 语言: Java
  • 标签: 期末实训  

资源简介

本学生成绩管理系统使用Java GUI和MySQL数据库以及相关知识,分为管理员、教师用户和学生用户三种登录方式,主要的功能就是对学生的成绩进行管理和查询。

资源截图

代码片段和文件信息

package Database;

import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class DBcon {
public static final String DBDRIVER = “com.mysql.jdbc.Driver“ ;
// 定义MySQL数据库的连接地址
public static final String DBURL = “jdbc:mysql://localhost:3306/studentdb?useUnocode=true&characterEncodeing=UTF-8“ ;
// MySQL数据库的连接用户名
public static final String DBUSER = “root“ ;
// MySQL数据库的连接密码
public static final String DBPASS = “root“ ;
java.sql.Connection con=null;
Statement stmt;
public DBcon(){
try{
jbInit();
}catch (Exception e) {
e.printStackTrace();
}
}
private void jbInit() throws Exception{
Class.forName(“com.mysql.jdbc.Driver“);
con =DriverManager.getConnection(DBURLDBUSERDBPASS);//连接数据库
stmt= con.createStatement();//创建语句对象
}
public Statement getStatement(){
return stmt;
}
//用以执行查询的SQL语句
public ResultSet query(String SELECT_USER_SQL)throws Exception{
return stmt.executeQuery(SELECT_USER_SQL);
}
//用以执行更新的SQL语句
public void update(String UPDATE_SQL)throws Exception{
 stmt.executeUpdate(UPDATE_SQL);
}
//用以执行增加的SQL语句
public void add(String ADD_SQL)throws Exception{
 stmt.executeUpdate(ADD_SQL);
}
//用以执行删除的SQL语句
public void delete(String DELETE_SQL)throws Exception{
 stmt.executeUpdate(DELETE_SQL);
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-06-22 22:43  TheStudentSystem\
     文件         523  2017-06-20 19:34  TheStudentSystem\.classpath
     文件         392  2017-06-15 09:45  TheStudentSystem\.project
     目录           0  2017-06-22 22:43  TheStudentSystem\.settings\
     文件         598  2017-06-15 09:45  TheStudentSystem\.settings\org.eclipse.jdt.core.prefs
     目录           0  2017-06-22 22:43  TheStudentSystem\bin\
     目录           0  2017-06-22 22:43  TheStudentSystem\bin\Database\
     文件        1914  2017-06-21 09:58  TheStudentSystem\bin\Database\DBcon.class
     文件        1786  2017-06-21 01:45  TheStudentSystem\bin\Database\Service.class
     目录           0  2017-06-22 22:43  TheStudentSystem\bin\Dialog\
     文件        4705  2017-06-22 09:05  TheStudentSystem\bin\Dialog\AddStudentDialog.class
     文件        4480  2017-06-22 09:05  TheStudentSystem\bin\Dialog\AddTeacherDialog.class
     文件        4947  2017-06-22 09:05  TheStudentSystem\bin\Dialog\DeleteStudentDialog.class
     文件        4839  2017-06-22 09:06  TheStudentSystem\bin\Dialog\DeleteTeacherDialog.class
     文件        5842  2017-06-22 09:06  TheStudentSystem\bin\Dialog\Query1StudentScore.class
     文件        5249  2017-06-22 09:06  TheStudentSystem\bin\Dialog\Query1TeacherDialog.class
     文件        5243  2017-06-22 09:07  TheStudentSystem\bin\Dialog\Query2StudentDialog.class
     文件        5845  2017-06-22 09:07  TheStudentSystem\bin\Dialog\Query2StudentScore.class
     文件        5350  2017-06-22 09:08  TheStudentSystem\bin\Dialog\QueryStudentDialog.class
     文件        5845  2017-06-22 09:08  TheStudentSystem\bin\Dialog\QueryStudentScore.class
     文件        4523  2017-06-22 09:09  TheStudentSystem\bin\Dialog\QueryTeacherDialog.class
     文件        3174  2017-06-22 09:11  TheStudentSystem\bin\Dialog\StudentScore$TableChangeListener.class
     文件        7785  2017-06-22 09:11  TheStudentSystem\bin\Dialog\StudentScore.class
     文件        5302  2017-06-22 09:11  TheStudentSystem\bin\Dialog\TeacherDialog.class
     文件        4621  2017-06-22 09:12  TheStudentSystem\bin\Dialog\Update1PassDilog.class
     文件        4269  2017-06-22 09:12  TheStudentSystem\bin\Dialog\UpdateInputPower.class
     文件        4635  2017-06-22 09:12  TheStudentSystem\bin\Dialog\UpdatePassDilog.class
     文件        5365  2017-06-22 09:13  TheStudentSystem\bin\Dialog\UpdateStudentDialog.class
     目录           0  2017-06-22 22:43  TheStudentSystem\bin\main\
     文件        9453  2017-06-20 19:03  TheStudentSystem\bin\main\123.jpg
     文件        5435  2017-06-22 09:04  TheStudentSystem\bin\main\LoginSystem.class
............此处省略79个文件信息

评论

共有 条评论

相关资源