欢迎来到天天文库
浏览记录
ID:50396199
大小:256.00 KB
页数:20页
时间:2020-03-05
《数据库原理及应用课程设计报告.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、成绩《数据库原理及应用》课程设计报告商品销售管理系统学 院: 信息工程学院 班 级: 学 号: 姓 名: 完成时间: 201 课程设计的任务数据库原理及应用是计算机及其相关学科的一门重要的学科基础课程,也是计算机软件科学与技术、信息科学与技术的重要学科分支。本课程设计旨在通过对一个小型数据库管理系统(DBMS)的综合设计过程,强化学生对计算机系统软件的设计能力,提高学生的综合素质,并通过课程设计进一步加强学生对所学知识的理解,以及对数据库的全面、深刻认识。具体要求如下:1)了解DBMS的设计过程;2
2、)掌握关系型DBMS的结构及实现;3)掌握系统程序设计的基础知识;4)深化理解并掌握《数据库原理及应用》课程的相关内容;5)强化软件开发的团队意识,提高合作能力。系统需求分析与设计数据流图E-R图数据结构描述商品数据结构:ShanidChar6ShannameChar8ShancountSmailint2ShanpriceSmailint2Factoridchar6公司数据结构:FactoridChar6FactornamevarChar24FactoraddrvarChar24FactorphoneChar11销售数据结构
3、:ShanidChar6FactoridChar6SalsecountSmailint2销售管理系统软件设计流程图和功能模块图商品信息查询商品信息录入销售信息查询销售信息录入公司信息查询公司信息录入程序模块汇总商品信息录入;商品信息查询;公司信息录入;公司信息查询;销售信息录入;销售信息查询;源程序清单主目录:usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Secur
4、ity;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;publicpartialclass_Default:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){}protectedvoidButton1_Cl
5、ick(objectsender,EventArgse){Response.Redirect("~/Default2.aspx");}protectedvoidButton3_Click(objectsender,EventArgse){Response.Redirect("~/Default3.aspx");}protectedvoidButton2_Click(objectsender,EventArgse){Response.Redirect("~/Default4.aspx");}protectedvoidButto
6、n4_Click(objectsender,EventArgse){Response.Redirect("~/Default6.aspx");}protectedvoidButton5_Click(objectsender,EventArgse){Response.Redirect("~/Default4.aspx");}protectedvoidButton6_Click(objectsender,EventArgse){Response.Redirect("~/Default5.aspx");}protectedvoid
7、Button7_Click(objectsender,EventArgse){Response.Redirect("~/Default7.aspx");}}○1商品信息录入;usingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.Htm
8、lControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;usingSystem.Data.SqlClient;publicpartialcla
此文档下载收益归作者所有