医院信息查询系统.rar

RAR格式版权申诉手机打开展开

医院信息查询系统,2.9万字 39页论文+开题+任务书+外文翻译摘 要随着社会的发展,在一个知识、科技、信息爆炸的年代,怎么快速、准确、精确查找你所要的信息越来越为人们所关注,因此开发一些简单的查询软件能很好地帮我们解决这个难题。全国各个省、市、县、乡的医院无数多个,怎么从众多的医院中查找你需要的医院信息,本文就是针对此...
编号:92-31363大小:251.26K
分类: 论文>计算机论文

该文档为压缩文件,包含的文件列表如下:

内容介绍

原文档由会员 xiaowei 发布

医院信息查询系统
2.9万字 39页
论文+开题+任务书+外文翻译


摘 要
随着社会的发展,在一个知识、科技、信息爆炸的年代,怎么快速、准确、精确查找你所要的信息越来越为人们所关注,因此开发一些简单的查询软件能很好地帮我们解决这个难题。
全国各个省、市、县、乡的医院无数多个,怎么从众多的医院中查找你需要的医院信息,本文就是针对此情况而开发的一个用于查询医院信息的系统。通过此系统,所有人可以智能化、精确、有效、快速查询用户所需要的医院信息,同时,普通受权用户或管理员可以更新医院信息,进行数据库备份和还原,修改用户密码等,超级管理员增加、删除用户。
关键字:医院信息,VC++6.0,SQL server2000,控件,客户机/服务器,
数据库

Abstract
With the society developing rapidly, how to find out the information we need in accurately, exactly and quickly, in such an age of being full of explosions of knowledge, technology-and information, have been concerned by more and more people. Thus, developing some simple searchable software which could help us solve the problem, becomes so essential.
There are so many hospitals all over the country, and how to find out the information of the hospital you want to know from such a lot of hospitals, Aiming to solve this problem the text introduces a system, using for finding out the information of hospital. Through the system, everybody could find out the information you want in an intelligent, accurate, efficient and fast way, meanwhile general customers and administrators could renovate the information of the hospitals, backup and revert database. Revise the code of customers, and super administrators could even add and delete customers.

Key word: The information of hospital, Visual C++6.0, SQL server2000, control, C/S, Database.


目 录
摘 要……...............................................................................................................………………2
引 言……...............................................................................................................………………4
第一章 方案选择……............................................................................................................... 5
1.1 系统开发背景……..........................................................................................................5
1.2 开发工具的选择……......................................... ............................................................5
第二章 系统设计…….................................................... ...........................................................7
2.1 系统目标设计…….................................................. .......................................................7
2.2 开发设计思想…….................................................... .....................................................7
2.3 系统功能分析……................................................ .........................................................7
2.4 系统功能模块设计……......................................... .......................................................7
第三章 数据库设计……............................................... ...........................................................9
3.1 数据库设计……........................................................ .....................................................9
3.2 数据库需求分析……............................................. ......................................................11
3.3 数据库概念结构设计…….................................................................... ......................11
3.4 数据库逻辑结构设计……..........................................................................................13
第四章 详细设计…….................................................. ...........................................................14
4.1 进入确认窗口…….................................................. ......................................................14
4.2 主窗口……..................................................................... ................. ..............................15
4.3 医院信息查询……......................................................... ..............................................15
4.3.1 所有用户查询……............................................................................................16
4.3.2 用户登录…….....................................................................................................17
4.3.3 用户登出…….....................................................................................................18
4.3.4 增加医院信息……............................................................................................18
4.3.5 修改医院信 ….................................................. ...............................................19
4.3.6 删除医院信息……............................................................................................20
4.3.7退出系统……......................................................................................................20
4.4 用户资料管理……................................................... ....................................................21
4.4.1 管理员登录……..................................................................................................21
4.4.2 修改密码…….......................................................................................................21
4.4.3 增加用户……....................................... ..............................................................22
4.4.4 删除用户…….......................................................................................................23
4.5 数据库管理…….................................... ......................................................................23
4.5.1 用户登录……......................................................................................................24
4.5.2 数据库备份……..................................................................................................24
4.5.3 数据库还原……..................................................................................................25
4.5.4 退出系统……......................................................................................................26
第五章 总结……............................................................. ................. .....................................27
致 谢……......................................................................... ................. ........................................27
参考文献…….............................................................. ................. ............................................27



参考文献
[1] Visual C++6.0 程序设计与开发技术大全 人民邮电出版社
[2] Visual C++6.0 信息管理系统开发实例导航 人民邮电出版社
[3] 廖望,何俊,谢春旺,钟永生,黄智诚 SQL server2000案例教程 冶金工业出版社




附件
全国医院信息查询系统-主要算法的部分源代码


4.1
if(!m_database.IsOpen()){ // 连接数据库
try{
m_database.Open(_T("全国医院信息查询系统"),false,false,_T("ODBC;UID=sa;UPASSWORD="),true);
}catch(CDBException e1){ // 捕捉数据库错误
e1.GetErrorMessage("无法连接数据库",0,NULL);
......