<%@ page contentType="text/html; charset=gb2312"%> 一个学生成绩管理系统的代码
网站公告:   ◆北天JAVA技术网热情为java爱好者服务,本网内容包括JAVA(JSP、servlet、EJB、webservice、j2ee、javabean、应用服务器、JavaScript),数据库(MYSQL、SQL Server、Sybase、Oracle、DB2、数据库综合知识),设计研究(设计模式、Struts、Spring、Hibernate、设计框架、设计综合知识),WEB2.0新技术(主要介绍AJAX),以及各种技术的入门、实例、例子等等,欢迎各位多来坐坐!◆  诚邀各位JAVA爱好者加盟!◆  本网站内容丰富,更新快,保证每周20篇以上!  
加入收藏
设为首页
联系站长
承接项目
  相关资源:网站首页 | 免费培训学院 | 技术论坛 | JAVA聊天室 | 作家专栏 | 开发工具 | 认证考试 | 会员俱乐部
  JAVA技术初学者园地 | jsp与servlet | javascript | Java源代码 | EJB | web service | 应用服务器 | JAVA综合知识
  设计研究设计模式 | 设计框架 | Struts | Spring | Hibernate | 开源项目 | 面向对象设计 | 设计综合知识
  数 据 库MYSQL | SQL Server | Sybase | Oracle | DB2 | Informix | Access | 数据库综合知识
  其他资源:AJAX新技术 | 网站开发 | ERP软件 | OA办公软件 | 商业智能BI | 开发综合知识 | 承接项目 | 项目试用

 
 
一个学生成绩管理系统的代码
     发布者: 发布时间:2008-05-17

原文地址:http://www.bc-cn.net/bbs/dispbbs.asp?BoardID=12&ID=73964

学生成绩管理系统源码下载地址

NetBeans5.5编写
Struts1.2.8 + Hibernate3.1 + MYSQL5.0

数据库结构为:
DROP DATABASE IF EXISTS ENOVA;
CREATE DATABASE ENOVA;
USE ENOVA;

CREATE TABLE STUDENT (
    ID int(11) NOT NULL auto_increment,
    NUMBER char(15) NOT NULL UNIQUE,
    NAME varchar(4) NOT NULL ,
    SEX varchar(1) default NULL,
    NATION varchar(10) default NULL,
    ENROLL_YEAR YEAR(4) NOT NULL ,
    BIRTHDAY date default NULL,
    BIRTH_PLACE varchar(50) default NULL,
    PASSWORD char(15) NOT NULL ,
    CLASS_ID int(11) NOT NULL ,
    PRIMARY KEY  (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE TEACHER(
    ID int(11) NOT NULL auto_increment,
    NAME varchar(4) default NULL ,
    SEX varchar(1) default NULL,
    USERNAME char(15) NOT NULL UNIQUE ,
    PASSWORD char(15) NOT NULL ,
    PRIMARY KEY  (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE DEPARTMENT(
    ID int(11) NOT NULL auto_increment,
    NAME varchar(20) NOT NULL,
    PRIMARY KEY (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE SPECIAL(
    ID int(11) NOT NULL auto_increment,
    NAME varchar(20) NOT NULL,
    DEPARTMENT_ID int(11) NOT NULL ,
    PRIMARY KEY (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE CLASS(
    ID int(11) NOT NULL auto_increment,
    NAME varchar(20) NOT NULL,
    TEACHER_ID int(11) NOT NULL ,
    SPECIAL_ID int(11) NOT NULL ,
    YEAR year(4) NOT NULL ,
    PRIMARY KEY (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE COURSE(
    ID int(11) NOT NULL auto_increment,
    NAME varchar(20) NOT NULL,
    TEACHER_ID int(11) NOT NULL ,
    HOUR int(4) default NULL,
    CREDIT float(2,1) NOT NULL ,
    YEAR year(4) default NULL,
    TERM varchar(1) default NULL,
    EXAM_MODE varchar(2) default NULL,
    EXAM_TYPE varchar(2) default NULL,
    TYPE varchar(2) default NULL,
    PRIMARY KEY  (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE SCORE(
    COURSE_ID int(11) NOT NULL ,
    STUDENT_ID int(11) NOT NULL ,
    VALUE int(4) default NULL ,
    DATE date NOT NULL ,
    PRIMARY KEY  (STUDENT_ID,COURSE_ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE ROOT(
    ID int(11) NOT NULL auto_increment,
    USERNAME char(15) NOT NULL UNIQUE ,
    PASSWORD char(15) NOT NULL ,
    PRIMARY KEY (ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE CLASS_COURSE(
    CLASS_ID int(11) NOT NULL ,
    COURSE_ID int(11) NOT NULL ,
    PRIMARY KEY (CLASS_ID,COURSE_ID))ENGINE=InnoDB DEFAULT CHARSET=utf8;

alter table STUDENT add constraint FK_STUDENT_CLASS
      foreign key(CLASS_ID) references CLASS(ID) on delete cascade;

alter table SPECIAL add constraint FK_SPECIAL_DEPARTMENT
      foreign key(DEPARTMENT_ID) references DEPARTMENT(ID) on delete cascade;

alter table CLASS add constraint FK_CLASS_TEACHER
      foreign key(TEACHER_ID) references TEACHER(ID) on delete cascade;

alter table CLASS add constraint FK_CLASS_SPECIAL
      foreign key(SPECIAL_ID) references SPECIAL(ID) on delete cascade;

alter table SCORE add constraint FK_SCORE_COURSE
      foreign key(COURSE_ID) references COURSE(ID) on delete cascade;

alter table SCORE add constraint FK_SCORE_SUTDENT
      foreign key(STUDENT_ID) references STUDENT(ID) on delete cascade;

alter table CLASS_COURSE add constraint FK_CC_CLASS
      foreign key(CLASS_ID) references CLASS(ID) on delete cascade;

alter table CLASS_COURSE add constraint FK_CC_COURSE
      foreign key(COURSE_ID) references COURSE(ID) on delete cascade;

alter table COURSE add constraint FK_COURSE_TEACHER
      foreign key(TEACHER_ID) references TEACHER(ID) on delete cascade;

insert into ROOT(USERNAME,PASSWORD) values('vlinux','lovefs');

create trigger CLASS_COURSE_DELETE BEFORE DELETE ON CLASS_COURSE
       FOR EACH ROW DELETE FROM SCORE WHERE COURSE_ID=old.COURSE_ID
           and STUDENT_ID in (SELECT ID FROM STUDENT WHERE CLASS_ID=old.CLASS_ID);

grant all on ENOVA.* to enova@localhost identified by "enova" with grant option;

数据结构文件可以从/enova/src/enova/ENOVA_DB.SQL中找到

管理员初始帐号/密码为:vlinux/lovefs

PS:管理员的学生成绩管理模块还没时间做,如果那个人有能力的就帮忙做了吧,不过估计在这个注释缺乏的程序中想快速理解好像有点难度。考试完我会适当加上注释的。毕竟我目前的目标就是为BCCN写一个自己的论坛
大家可以把这个程序当成一本书,有什么对Struts、Hibernate不理解的地方可以参考一下。呵呵,一起努力吧。

 

(转载文章请保留出处:北天JAVA技术网(www.java114.com))
 
更多精彩文章:
在Weblogic上配置Hibernate为JNDI
Eclipse插件开发之新手入门
Spring中bean的基本xml配置
JAVA规则开发篇
JAVA认证历年真题:SCJP考试真题和解析
JAVA基础:随机整数的生成
 
最近评论:
        
The more you know about site
The more you know about site garden german gnomei believe in you and mecoupon searsdenali gmccraigslist oc [url=http://feedburn.prv.pl/disney-ef6/] disney eeyore picture [/url][url=http://feedburn.prv.pl/bar-prot2d/] bar protein [/url][url=http://feedburn.prv.pl/denali-gbb/] denali gmc [/url][url=http://feedburn.prv.pl/coupon-sf7/] coupon sears [/url]
        
Buy cheap cialis drugs
http://www.youtube.com/user/WellDorik - cialis cheap cheap cialis http://www.youtube.com/user/WellDorik - cheap cialis online
        
回复:一个学生成绩管理系统的代码
[URL=http://www.lipitri.cn/comune-ragusa] comune ragusa [/URL] comune ragusa [URL=http://www.lipitri.cn/videos-zlatan-ibrahimovic] videos zlatan ibrahimovic [/URL] videos zlatan ibrahimovic [URL=http://www.lipitri.cn/samsung-com] samsung com [/URL] samsung com
        
eqxtc
www find ghost movie com [url=http://qazhenin710.info]www find ghost movie com[/url] www find ghost movie com ciavalsisticadepuebla hi5 com [url=http://index1.qazhenin710.info]ciavalsisticadepuebla hi5 com[/url] ciavalsisticadepuebla hi5 com www fotospornodemaduras com [url=http://index2.qazhenin710.info]www fotospornodemaduras com[/url] www fotospornodemaduras com noid clan de [url=http://index3.qazhenin710.info]noid clan de[/url] noid clan de www seuniverse com [url=http://index4.qazhenin710.info]www seuniverse com[/url] www seuniverse com bghr lilka livejournal com [url=http://index5.qazhenin710.info]bghr lilka livejournal com[/url] bghr lilka livejournal com wwwfinestmodels com [url=http://index6.qazhenin710.info]wwwfinestmodels com[/url] wwwfinestmodels com lilacyee blogspot com [url=http://index7.qazhenin710.info]lilacyee blogspot com[/url] lilacyee blogspot com sqxy xsedu net cn [url=http://index8.qazhenin710.info]sqxy xsedu net cn[/url] sqxy xsedu net cn classifed [url=http://index9.qazhenin710.info]classifed[/url] classifed teen sex download site multiply com [url=http://index10.qazhenin710.info]teen sex download site multiply com[/url] teen sex download site multiply com
        
vlisu
diros org ua [url=http://qazsmile710.info]diros org ua[/url] diros org ua cutleryscience com [url=http://index1.qazsmile710.info]cutleryscience com[/url] cutleryscience com ohioordnanceworks com [url=http://index2.qazsmile710.info]ohioordnanceworks com[/url] ohioordnanceworks com chris rainey videos com [url=http://index3.qazsmile710.info]chris rainey videos com[/url] chris rainey videos com geona com geonabot geonabot 1 [url=http://index4.qazsmile710.info]geona com geonabot geonabot 1[/url] geona com geonabot geonabot 1 william shakespeare org uk [url=http://index5.qazsmile710.info]william shakespeare org uk[/url] william shakespeare org uk ladies www atomicpurses com [url=http://index6.qazsmile710.info]ladies www atomicpurses com[/url] ladies www atomicpurses com galleryart [url=http://index7.qazsmile710.info]galleryart[/url] galleryart lu facebook com [url=http://index8.qazsmile710.info]lu facebook com[/url] lu facebook com www poepsex1 nl [url=http://index9.qazsmile710.info]www poepsex1 nl[/url] www poepsex1 nl e1 f252 mail yahoo com [url=http://index10.qazsmile710.info]e1 f252 mail yahoo com[/url] e1 f252 mail yahoo com
        
mcsvh
stat4me com [url=http://qazblink710.info]stat4me com[/url] stat4me com themaharajah web log nl [url=http://index1.qazblink710.info]themaharajah web log nl[/url] themaharajah web log nl store winferno com [url=http://index2.qazblink710.info]store winferno com[/url] store winferno com singers com [url=http://index3.qazblink710.info]singers com[/url] singers com www cartoonnetworkfreegames [url=http://index4.qazblink710.info]www cartoonnetworkfreegames[/url] www cartoonnetworkfreegames www lesbian flicks com [url=http://index5.qazblink710.info]www lesbian flicks com[/url] www lesbian flicks com 3d sex movies [url=http://index6.qazblink710.info]3d sex movies[/url] 3d sex movies www scholatics com [url=http://index7.qazblink710.info]www scholatics com[/url] www scholatics com www tri statemuscle com [url=http://index8.qazblink710.info]www tri statemuscle com[/url] www tri statemuscle com grooveaol comjames yahoo com email addresses [url=http://index9.qazblink710.info]grooveaol comjames yahoo com email addresses[/url] grooveaol comjames yahoo com email addresses hornymens com [url=http://index10.qazblink710.info]hornymens com[/url] hornymens com
        
qttqw
tour inbedwithashley com [url=http://qazprops710.info]tour inbedwithashley com[/url] tour inbedwithashley com www najibislame canalblog com [url=http://index1.qazprops710.info]www najibislame canalblog com[/url] www najibislame canalblog com anna horse movies com [url=http://index2.qazprops710.info]anna horse movies com[/url] anna horse movies com onlineusa us [url=http://index3.qazprops710.info]onlineusa us[/url] onlineusa us support cyberdefender com [url=http://index4.qazprops710.info]support cyberdefender com[/url] support cyberdefender com sunflower stone and ms internationa [url=http://index5.qazprops710.info]sunflower stone and ms internationa[/url] sunflower stone and ms internationa www laserarena si [url=http://index6.qazprops710.info]www laserarena si[/url] www laserarena si qvc com diamondique round necklace [url=http://index7.qazprops710.info]qvc com diamondique round necklace[/url] qvc com diamondique round necklace www avtovokzal spb ru www avtovokzal ru [url=http://index8.qazprops710.info]www avtovokzal spb ru www avtovokzal ru[/url] www avtovokzal spb ru www avtovokzal ru http www bollywood pradise com [url=http://index9.qazprops710.info]http www bollywood pradise com[/url] http www bollywood pradise com portal adp com [url=http://index10.qazprops710.info]portal adp com[/url] portal adp com
        
tuuik
www wowtube ch [url=http://qazspoke710.info]www wowtube ch[/url] www wowtube ch garmin com product sp340 [url=http://index1.qazspoke710.info]garmin com product sp340[/url] garmin com product sp340 www historicalhomes com [url=http://index2.qazspoke710.info]www historicalhomes com[/url] www historicalhomes com utopia2u com [url=http://index3.qazspoke710.info]utopia2u com[/url] utopia2u com yahoo com hotmail com myway com flows in dubai 2007 [url=http://index4.qazspoke710.info]yahoo com hotmail com myway com flows in dubai 2007[/url] yahoo com hotmail com myway com flows in dubai 2007 xnxmovies [url=http://index5.qazspoke710.info]xnxmovies[/url] xnxmovies www freesexyworld com secret html [url=http://index6.qazspoke710.info]www freesexyworld com secret html[/url] www freesexyworld com secret html www noelia webcam com [url=http://index7.qazspoke710.info]www noelia webcam com[/url] www noelia webcam com rapidshare com files mot de passe elie annonce semoun la suite [url=http://index8.qazspoke710.info]rapidshare com files mot de passe elie annonce semoun la suite[/url] rapidshare com files mot de passe elie annonce semoun la suite premier sexi do de maio [url=http://index9.qazspoke710.info]premier sexi do de maio[/url] premier sexi do de maio 20in10days com [url=http://index10.qazspoke710.info]20in10days com[/url] 20in10days com
        
eiikj
roastmutton deviantart com [url=http://qazsixth710.info]roastmutton deviantart com[/url] roastmutton deviantart com web14 groups msn com [url=http://index1.qazsixth710.info]web14 groups msn com[/url] web14 groups msn com northern kentucky educators federal credit union com [url=http://index2.qazsixth710.info]northern kentucky educators federal credit union com[/url] northern kentucky educators federal credit union com humanlifescience com [url=http://index3.qazsixth710.info]humanlifescience com[/url] humanlifescience com www sexof school girl com [url=http://index4.qazsixth710.info]www sexof school girl com[/url] www sexof school girl com bbisawesome blogspot com [url=http://index5.qazsixth710.info]bbisawesome blogspot com[/url] bbisawesome blogspot com www russian big brother com [url=http://index6.qazsixth710.info]www russian big brother com[/url] www russian big brother com dreamingyear web log nl [url=http://index7.qazsixth710.info]dreamingyear web log nl[/url] dreamingyear web log nl www game go gril com [url=http://index8.qazsixth710.info]www game go gril com[/url] www game go gril com enc org [url=http://index9.qazsixth710.info]enc org[/url] enc org lesbiran [url=http://index10.qazsixth710.info]lesbiran[/url] lesbiran
        
回复:一个学生成绩管理系统的代码
nRXv8r ryvtkqlqhswh, [url=http://hebrwtimvdal.com/]hebrwtimvdal[/url], [link=http://rrvesljhtodg.com/]rrvesljhtodg[/link], http://jjjbdnknzcfw.com/
        
标 题:   
内 容:   
 
                                  
 
免责声明:该文章由网友发表,如果对您造成侵权,请联系站长

首页 - 承接项目 - 网站地图 - 联系我们 -
版权所有北天JAVA技术工作室 ICP证号:粤ICP备06079815号