库存分销管理系统数据库设计、测试毕业设计论文

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

库存分销管理系统

─数据库设计、测试

摘要:本设计通过计算机的软件管理系统对企业的营销网络,进行统一的管理,以提高效率。本文针对目前库存管理系统存在的有关权限授权和认证问题分析,采用面向对象的开发方法,分析设计了库存分销管理系统,采用Java语言实现了库存分销管理系统中的子功能──系统管理模块。本文对系统管理模块的开发与实现进行说明,并对该系统即分销商库存管理模块进行测试说明。

关键词:库存;统计报表;登录;测试

Abstract:The focus of this design is through the computer software management system to enterprise's marketing network, unified management, in order to improve efficiency. This article according to the present stock management system existed the problem of the authorization and authentication problem, used the object-oriented development method, analysis and design of the distribution of inventory management system, and used Java language to realize the the distribution of inventory management systems --system management module. System management module. In this article, the development and realization of the system management module, and the distributor inventory management module of the system are analyzed in the test specification.

Key words:Inventory; Statistic forms; Login; Tes

1 库存分销管理系统的数据库设计

1.1 概述

(Database Design)是指根据用户的需求,在某一具体的数据库管理系统

上,设计数据库的结构和建立数据库的过程。数据库系统需要操作系统的支持。数据库设计是建立数据库及其应用系统的技术,是信息系统开发和建议中的核心技术。由于数据库应用系统的复杂性,为了支持相关程序运行,数据库设计就变得异常复杂,因此最佳设计不可能一蹴而就,而只能是一种“反复探寻,逐步求

精”的过程,也就是规划和结构化数据库中的数据对象以及这些数据对象之间关系的过程。

数据库设计与实现是系统开发中的一个重要的环节,一个结构合理的数据库可以提高系统的整体的运行效率,同时可以缩短系统的开发时间。本系统采用MySql作为数据库。

1.2 数据库的设计原则

在数据库的设计中,本系统按照以下原则进行设计,一尽量满足系统的要求。

1.2.1 数据库中数据的可操作性

数据库设计时注意保证在整个系统运行和业务操作过程中,数据库都能便于访问和查询,同时还需要考虑到要尽量节省数据库操作时的响应时间,尽可能的提高数据库对程序和业务请求的响应速度。

1.2.2 数据库设计的准确性和完整性

数据库中数据的设计要满足程序设计的要求,对于程序中使用的数据和存储的数据内容,都有严格的数据和准确的数据类型与之对应,同时在数据库设计时要对关键数据进行详细的说明,以方便系统设计人员的开发工作。

1.2.3 数据库冗余性

过多的冗余数据会大大增加数据库的工作量,降低数据库的响应时间和准确性。因为改善数据库性能的一个非常重要的方面就是减少或消除数据库的冗余信息,要通过规范化处理使冗余数据减少。

1.3 数据库连接设计

为了方便连接数据库,本系统把数据库连接代码存在DB.java中,采用TOMCAT服务器提供的数据库连接池。代码如下:

/**

* 数据库管理,使用单例模式

*

* @author Administrator

*

*/

public class DB {

private static DB db = null;

private Connection conn = null;

private static DataSource ds = null;

private Context ctx = null;

/**

* 懒汉式

*

* @return

*/

public static DB getInstance() {

if (db != null) {

return db;

} else {

db = new DB();

return db;

}

}

private DB() {

try {

ctx = new InitialContext();

// 采用jndi查找连接池

ds = (DataSource) ctx.lookup("java:comp/env/jdbc/drp");

} catch (NamingException namee) {

System.out.println("查询连接池失败!\n" + namee.getMessage());

} finally {

if (ctx != null) {

try {

ctx.close();

} catch (NamingException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

}

public synchronized Connection getConn() {

String driver="com.mysql.jdbc.Driver";

String url="jdbc:mysql://localhost:3306/drp";

String username="root";

String pwd="lll123456";

try

{

Class.forName(driver);

}catch(Exception ex)

{

ex.printStackTrace();

}

Connection conn=null;

相关文档
最新文档