77范文网 - 专业文章范例文档资料分享平台

图书馆管理系统的设计与实现

来源:网络收集 时间:2019-04-02 下载这篇文档 手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:或QQ: 处理(尽可能给您提供完整文档),感谢您的支持与谅解。点击这里给我发消息

本科生毕业论文(设计)

题目: 图书馆管理系统的设计与实现

学院 / 系 软件学院 专 业 信息管理与信息系统(日英强化) 年 级 2009级 学 号 09045**** 作者姓名 ** 指导教师 **

2012年12月20日

大连外国语学院 本科生毕业论文(设计)

摘 要

随着科技的发展和社会的进步,计算机已成为人们生活和工作中的得力助手。特别是现代Internet的Web技术的发展大大地推动了社会各个方面的发展。设计一个现代的基于ASP.NET的图书馆管理系统势在必行。

图书馆管理系统是典型的信息管理系统(MIS),其开发主要包括后台数据库的建立和维护以及前端应用程序的开发两个方面。我之所以在这一部分的开发中使用的后台开发工具是SQL Server2005,因为,它可以准确完整的处理繁杂的数据。对于前台,我选择了现在流行的Web系统开发工具ASP.NET。由于ASP.NET Web应用程序可以使用多种语言来开发,但我选择了C#,因为Visual C#.NET是专门针对Microsoft的.NET战略而推出的语言,它对.NET Framework和ASP.NET具有最为全面的支持。可以说,Visual C#.NET是开发ASP.NET Web应用程序最好的语言。

在系统的开发过程中,主要完成对图书馆管理系统(LMS)的需求分析、功能模块的划分、数据库模式分析、并在此设计了数据库结构和应用程序的B/S结构。首先是通过SQL Server2005对后台数据库中数据表的建立,主要包括了读者表、管理员表、借书表、图书信息表等,通过这些表,我们可以实现对读者基本信息的管理、管理员基本信息的管理、借书信息的管理、图书基本信息的管理等。通过对各个功能设计后的运行结果证明,本文介绍了所设计的图书馆管理系统可以满足图书借阅者、书库管理员和图书馆总管三方的要求。方便了读者的借阅方式,也简化了管理员的手工操作,使整个图书馆管理流程方便,快捷。

关键字:图书馆,信息管理,SQL Server 2005

大连外国语学院 本科生毕业论文(设计)

Abstract

Along with the technical development and society's progress, the computer has become the people to live with the work in primary assistant. Specially the modern Internet Web technology development greatly impelled the social each aspect development. Designs for a modern age based on the ASP.NET library management system imperative.

The Library Management System of which development mainly contains two aspects that one is the establishment and maintenance of the backstage database and the other is the development of the fore-end application procedures is a typical Management Information System(MIS). The reason why I chose to use the SQL Server 2005 as a development tool is that it’s can handle strong data completely and exactly. So to design this part, I chose the development tool ASP.NET on Web System which is now highly spread. For ASP.NET Web application product can use many would-be languages, but I chose C#, because Visual C#.NET is the language created with the purpose of dealing with the .NET strategy on Microsoft. It provides complete support for the .NET Framework and ASP.NET. So, it can be called the best language for the ASP.NET Web application product. I mainly accomplished the analysis of need, the demarcation of function mole and the analysis of database mold of the Library Management System(LMS) while designed a database structure and the B/S structure of application procedure during the process of developing this system. Firstly, I created data forms which mainly contain readers form, managing person's form, book-borrowed forms and book information forms and so on of the backstage database by SQL Server 2005.These forms can help us managing the readers and the managing person basic information, the borrowed books and the books information etc. It can be proved that the Library Management System which is designed in this thesis can satisfy all the need of the lenders of books, superintendents and the high level of superintendents by the way of putting every function of design into run. Has facilitated reader's borrowing way, also simplified manager's manual operation, causes the entire books management flow to be convenient, quickly.

Keywords: Library, Information Management, SQL Server 2005

大连外国语学院 本科生毕业论文(设计)

目 录

1 绪论 ................................................................. 1

1.1 项目背景 ....................................................... 1 1.2 研究意义 ....................................................... 2 1.3 相关领域介绍 ................................................... 2 1.4 本系统概述 ..................................................... 2 2 图书馆管理系统分析 ................................................... 4

2.1 系统需求分析 ................................................... 4 2.1.1 功能需求 ................................................... 4 2.1.2 性能需求 ................................................... 5 2.2 系统可行性分析 ................................................. 5 2.2.1 技术及开发方法可行性 ....................................... 5 2.2.2 管理可行性 ................................................. 6 2.2.3 经济可行性 ................................................. 6 2.3 业务流程分析 ................................................... 6 3图书馆管理系统设计 ................................................... 8

3.1 系统物理环境配置 ............................................... 8 3.2 项目规划 ....................................................... 8 3.3 系统概要设计 ................................................... 8 3.4 数据库设计 .................................................... 10 3.4.1 概念设计 .................................................. 10 3.4.2 逻辑设计 .................................................. 13 3.4.3 物理设计 .................................................. 14 3.5 系统详细设计 .................................................. 15 3.5.1 用户模块设计 .............................................. 15 3.5.2 管理员模块设计 ............................................ 16

4图书管理系统的实现 .................................................. 18

4.1 系统技术实现 .................................................. 18

大连外国语学院 本科生毕业论文(设计)

4.1.1 ASP.NET简介 .............................................. 18 4.1.2 B/S 结构概述 .............................................. 18 4.1.3 三层架构简介 .............................................. 18 4.1.4 SQL Server简介 ........................................... 19 4.2 系统首页实现 .................................................. 19 4.3 用户简介模块实现 .............................................. 21 4.3.1 用户注册 .................................................. 21 4.3.2 个人信息修改模块 .......................................... 22 4.3.3 图书借阅功能 .............................................. 22 4.3.4 图书列表浏览功能 .......................................... 23 4.4 管理员模块实现 ................................................ 23 4.4.1 管理员登陆模块 ............................................ 23 4.4.2 录入图书模块 .............................................. 24 4.4.3 图书馆管理模块 ............................................ 24 4.4.4 会员管理模块 .............................................. 25 4.4.5 借阅管理模块 .............................................. 26

5 系统测试 ............................................................ 27

5.1 系统测试方法 .................................................. 27 5.1.1 系统测试计划 .............................................. 27 5.1.2 系统测试工具 .............................................. 27 5.1.3 系统测试方法和测试类型 .................................... 27 5.2 系统测试的目的和原则 .......................................... 28 5.3 系统测试 ...................................................... 28 5.3.1 系统登录测试要点 .......................................... 28 5.3.2 管理员进入系统测试要点 .................................... 28 5.3.3 数据输入测试要点 .......................................... 28 5.3.4 数据删除测试要点 .......................................... 28 5.4 系统测试实例 .................................................. 29 6 结 论 ............................................................... 31

百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说综合文库图书馆管理系统的设计与实现在线全文阅读。

图书馆管理系统的设计与实现.doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印 下载失败或者文档不完整,请联系客服人员解决!
本文链接:https://www.77cn.com.cn/wenku/zonghe/567985.html(转载请注明文章来源)
Copyright © 2008-2022 免费范文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ: 邮箱:tiandhx2@hotmail.com
苏ICP备16052595号-18
× 注册会员免费下载(下载后可以自由复制和排版)
注册会员下载
全站内容免费自由复制
注册会员下载
全站内容免费自由复制
注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: