优秀的毕业设计论文网
计算机 JAVA 电子信息 单片机 机械机电 模具 土木工程 建筑结构 论文
热门搜索词:网络 ASP.NET 汽车 电气 数控 PLC

教学信息管理系统的设计与实现

以下是资料介绍,如需要完整的请充值下载.
1.无需注册登录,支付后按照提示操作即可获取该资料.
2.资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用.
  
资料介绍:


 摘 要
管理系统是校园管理系统的一个有机组成部分,本文简要阐述了管理系统建设的意义以及系统的开发过程。教学管理系统采用当前最流行的编程技术,可以实现数据的高效、动态、交互访问,具有强大的Server/Client交互能力。本系统以7.0  SQL Sever 2000为主要开发平台,从用户的角度出发,对教学管理系统的功能进行了全面的分析。本系统实现的主要功能包括学生成绩查询、学生资料查询、教师资料查询、单科成绩浏览、学年开课清单、学分计算、平均分计算、添加修改学生、教师、课程信息、删除学生、教师、课程信息、数据库的还原、备份、用户信息的管理和维护及其它一些辅助功能。在数据库的建立上主要采用Access作为关系数据库的开发工具。在数据库的连接上采用ADO的数据库访问技术。本文从开发平台、运行环境、系统设计和模块实现等方面阐述了系统的设计以及开发过程,从该系统的开发背景、系统功能、设计思路和一些程序开发的细节等方面进行了论述。尤其是详细的说明了学分计算、平均分计算、添加修改学生、教师、课程信息、删除学生、教师、课程信息、数据库的还原、备份、用户信息的管理和维护这几个模块的设计与开发过程。
关键词:Delphi  SQL  教学管理系统 数据库

[来源:http://www.think58.com]

Abstract
The teaching information management system is an organism that campus information manage the system to constitute the part, this text synopsis expatiated the teaching manages the meaning of system developments and the process of development of the systems.Teaching management system adoption front most popular of Delphi plait distance technique, can realize data efficiently, development, hand over to visit with each other, have the mighty Server/ Client hands over with each other ability.This system with Delphi7.0  SQLSever 2000 for main the terrace of development, set out from the angle of the customer, manage to the teaching the function of the system proceeded completely of analysis.The main function that this system realizes includes the student the score the search, student data search, teacher data search, single section score view, the academic year has a lecture detailed list, credit calculation, average cent calculation, increase to modify the student, teacher, course the information and delete the student, teacher, course the information, database restores, the management of the backup, customer information with support and other some assistance function.Establish the tool of development of the our main adoption in top Access conduct and actions relation database in the database.The database interview technique of the adoption ADO on the conjunction in database.This text is from the development terrace, circulate the environment, system design with mold a design for realizing etc. expatiating system and development processes, from the background of development, system function of that system, designed the way of thinking to proceed the treatise with details etc. that some procedure develop.Its is management that expatiation credit calculation, average cent calculation, increase to modify the student, teacher, course the information and delete the student, teacher, course the information, database restores, backup, customer information with design that support this a few molds piece and development process.

[来源:http://www.think58.com]

Key Words:   Delphi  SQL  teaching management system  data-base

[资料来源:http://www.THINK58.com]

3. 1 系统设计
3. 1. 1 系统功能分析
本系统主要有以下功能要求:
(1)登陆,包括:注销和退出;
(2)查询, 包括: 学生成绩查询、学生资料查询、教师资料查询;
(3)浏览, 包括:单科成绩浏览、学年开课清单;
(4)计算,包括:学分计算、平均分计算和方差计算;
(5)维护,包括:填加修改删除学生、教师、课程信息、数据库的还原、备份及用户信息的维护;
(6)帮助,包括:关于、给我发邮件、系统信息。
3. 1. 2系统功能模块设计
根据系统功能要求,可以将系统分解成几个功能模块来设计。
3. 2 数据库设计
3. 2. 1数据库需求分析
根据数据流程,教学管理信息系统需要以下数据项:
(1)登陆表:用户名、密码、权限、角色;
(2)课程表:课程名称、讲课、学时、学分、课程状态;
(3)课程类型表:课程编号、课程类型;
(4)成绩类别表:成绩类别、人数;
(5)成绩表:记录编号、课程名称、教师姓名、学年、学期、成绩、课程状态;
(6)学生表:学号、姓名、性别、籍贯、生日、电话、电子邮箱;
(7)教师表:员工号、姓名、所在教研室、性别、电话、电子邮箱、职称。

[资料来源:www.THINK58.com]








目 录
摘 要 I
Abstract II
目 录 III
引 言 1
第1章 管理信息系统概述 2
1. 1管理信息系统产生的背景 2
1. 2管理信息系统的定义 3
1. 3管理信息系统的类型 4
1. 4管理信息系统设计原则 5
第2章 开发工具的介绍 7
2. 1 Delphi简介 7
2. 2 Delphi 的特点 7
2. 3 Server数据库开发 8
2. 4 ODBC概述 8
第3章 系统设计和数据库设计 10
3. 1 系统设计 10
3. 1. 1 系统功能分析 10
3. 1. 2系统功能模块设计 10
3. 2 数据库设计 10
3. 2. 1数据库需求分析 10
3. 2. 2数据库概念结构设计 10
3. 3数据库逻辑结构设计 12
第4章 教学管理系统的详细设计 15
4. 1用户登陆模块 15
4. 2系统模块 15
4. 3查询模块 15
4. 4浏览模块 15
4. 5计算模块 16
4. 6维护模块 16
[资料来源:http://www.THINK58.com]

4. 7帮助模块 17
第5章 动态数据访问的实现 18
5. 1 数据库的基础知识 18
5. 1. 1数据库技术的发展 18
5. 1. 2数据库(DataBase,简称DB) 20
5. 1. 3 表(Table) 21
5. 2数据库的建立 21
5. 3 ADO简介 23
5. 4用ADO连接数据库 23
第6章 教学管理系统的开发过程 24
6. 1登录窗体 24
6. 2主窗体 24
6. 3系统 24
6. 4 查询 25
6. 4. 1学生成绩查询 25
6. 4. 2学生资料查询 25
6. 4. 3 教师资料查询 25
6. 5 浏览 26
6. 5. 1单科成绩浏览 26
6. 5. 2学年开课清单 26
6. 6 计算 27
6. 6. 1 学分累加计算 27
6. 6. 2 平均分计算 28
6. 6. 3 学生成绩分布直方图 29
6. 6. 4 计算器 31
6. 7 维护 31
6. 7. 1 添加学生信息 31
6. 7. 2 添加教师信息 33
6. 7. 3 添加课程信息 33
6. 7. 4 学生成绩录入 35
6. 7. 5 删除学生记录 36
6. 7. 6 删除教师信息 37
6. 7. 7 删除课程信息 38
6. 7. 8 删除成绩记录 39
6. 7. 9备份数据库 40
[版权所有:http://think58.com]

6. 7. 10 还原数据库 41
6. 7. 11更改密码 41
6. 7. 12 添加新用户 42
6. 7. 13 删除用户 43
6. 8帮助 43
6. 8. 1给我发邮件 43
6. 8. 2关于 43
6. 8. 3系统信息 43
结 论 44
参考文献 45
谢 辞 46 [资料来源:http://www.THINK58.com]

[来源:http://think58.com]