收藏 分销(赏)

C#人事工资管理系统实验报告.doc

上传人:二*** 文档编号:4484343 上传时间:2024-09-24 格式:DOC 页数:19 大小:1.31MB
下载 相关 举报
C#人事工资管理系统实验报告.doc_第1页
第1页 / 共19页
亲,该文档总共19页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、.武汉产业学院数据库使用零碎计划试验讲演学号:090501102姓名:班级:毕波盘算机091指点老师:.武汉产业学院数据库使用零碎计划人事人为治理零碎计划总阐明:在当今社会,人为治理是一项须要并且非常要害的任务。现在跟着企业数目的急剧增加,处置人们的人为数据变的越来越繁缛艰难。现在,盘算机曾经遍及到了简直每个黉舍、家庭,咱们的进修跟生涯曾经到处离不开盘算机的存在。本零碎依照开辟请求要紧使用于企业人事零碎,实现对一样平常的人为增删查改的数字化管理。比拟零碎地对员工的信息跟人为进展治理,查问、增加、修正、删除都变的特别轻便,节约了少量的任务量。本课程计划是在进修了数据库使用零碎跟相干开辟软件课程之

2、后,让先生经过实践工程的计划、开辟,培育先生独破进展数据库软件的建模、在盘算机中进展数据库计划、并经过相干软件开辟零碎的才干。本零碎的根本功用包含:部分信息的治理查问、增加、修正、删除先生部分等信息的治理录入、查问、修正、删除员工的信息等、人为信息的治理录入、查问、修正员工的人为等。、人员本零碎要紧用于对员工人为进展治理,能够进展拔出、删除、修正、查问跟表现员工的信息。登录该零碎时,用户需要输出口令跟暗码,以确保数据的平安性,胜利登录的用户,能够拔出员工的信息跟人为,并对员工的信息跟人为进展增、删、改操纵。基于上述办法,咱们将员工数据保管到数据库中。咱们请求零碎能够高效疾速的处置数据,同时要保

3、障数据的准确性、相容性跟平安性。因而在数据库中需要界说非常多触发器,比如删除了某个员工的信息那么删除对应的一切人为信息、在世删除了某部分那么删除该部分一切的信息等。因而咱们要从数据库中读取数据,同时跟界面联络起来,同时也能将用户界面上的数据存储到数据库中。以上是计划此零碎应当留意的地点跟计划原那么,以下确实是遵照这些原那么跟规范计划出的一套完好的治理零碎。第1页共18页武汉产业学院数据库使用零碎计划一零碎需要:依照标题需要,能够把零碎分为三个局部:部分信息治理局部、人员信息治理局部跟工资信息治理局部。本次试验中,我要紧担任部分信息治理模块,题中需要对部分信息进展查询、增加、修正、删除操纵,这些

4、操纵按能否改动数据库数据可分为两类:查问操纵,只读取数据库信息,过错信息做修正;删除、更新跟增加操纵,需要对数据库中的数据进展读写操纵。因而只需写两局部代码,查问局部:deptinfo_Query进展部分信息查问,查问数据库信息;信息治理局部:deptinfo_Manage,对信息进展更新、增加跟删除。二数据库计划1.数据需要人事人为治理零碎需要实现的要紧功用有:1员工的根本信息录入2.人为信息表的录入。3.部分信息表的查问、拔出、修正、删除等操纵。2.相干表表1职工表:Employee_Info第2页共18页武汉产业学院数据库使用零碎计划表2人为表:Salary第3页共18页武汉产业学院数据

5、库使用零碎计划表3部分表:Dept_Info表4零碎用户表:User_Info3.数据流程图第4页共18页武汉产业学院数据库使用零碎计划人事人为治理零碎登录零碎治理员职工资表部门表工表图数据流程图三员工人为相干操纵1.查问局部相干代码:dateGrid1数据绑定privatevoidBindData(Stringsql)SqlConnectionconnection=SqlDataAdapterdataAdapter=newSqlConnection(connString);newSqlDataAdapter(sql,connection);DataSetdataSet=newDataSet(

6、);dataAdapter.Fill(dataSet);dataGridView1.DataSource=dataSet.Tables0;dataGridView1.Columns0.DataPropertyName=dataGridView1.Columns1.DataPropertyName=dataGridView1.Columns2.DataPropertyName=dataGridView1.Columns3.DataPropertyName=职工号;年份;月份;人为o;部分组合框的数据绑定第5页共18页武汉产业学院数据库使用零碎计划privatevoidBindDeptComBox

7、()stringsql=SELECT*FROMDept_Info;SqlConnectionconnection=SqlDataAdapterdataAdapter=newSqlConnection(connString);newSqlDataAdapter(sql,connection);DataSetdataSet=newDataSet();dataAdapter.Fill(dataSet);DeptcomBox.DataSource=dataSet.Tables0;DeptcomBox.DisplayMember=DeptcomBox.ValueMember=DeptcomBox.Sel

8、ectedIndex=0;DeptName;DeptID;按部分查问privatevoidcheck1_CheckedChanged(objectsender,EventArgse)if(check1.Checked)btnYes.Enabled=true;true;DeptcomBox.Enabled=check4.Checked=check4.Enabled=false;false;elseDeptcomBox.Enabled=check4.Enabled=false;true;按年份查问privatevoidcheck2_CheckedChanged(objectsender,Event

9、Argse)btnYes.Enabled=true;if(check2.Checked)YearComBox.Enabled=elsetrue;YearComBox.Enabled=false;YearComBox.SelectedIndex=0;按月份Y查问privatevoidcheck3_CheckedChanged(objectsender,EventArgse)第6页共18页武汉产业学院数据库使用零碎计划if(check3.Checked)btnYes.Enabled=true;true;MonthComBox.Enabled=elseMonthComBox.Enabled=fals

10、e;仅查问本人的人为privatevoidcheck4_CheckedChanged(objectsender,EventArgse)if(check4.Checked)btnYes.Enabled=true;check1.Enabled=false;DeptcomBox.Enabled=false;elsecheck1.Enabled=check1.Checked=true;false;privatevoidbtnYes_Click(objectsender,EventArgse)count=0;StringYearStr;intMonthStr;StringDeptStr;Stringsq

11、lStr=;sql=DeptStr=Convert.ToString(DeptcomBox.SelectedValue.ToString();部分号if(check1.Checked)DeptStr=sqlStr=月份,SalaryasConvert.ToString(DeptcomBox.SelectedValue.ToString();String.Format(selectSalary.EmpIDas职工号,Yearas年份,Monthas人为ofromSalary,Employee_InfowhereDeptID=0andSalary.EmpID=Employee_Info.EmpID

12、,DeptStr);if(count=0)第7页共18页武汉产业学院数据库使用零碎计划sql+=sqlStr;count=1;elsesql+=intersect+sqlStr;check1.Checked=false;年份if(check2.Checked)YearStr=Convert.ToString(YearComBox.SelectedItem.ToString();if(this.mainForm.operatorRight=2)sqlStr=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalary

13、whereYear=0,YearStr);elseif(this.mainForm.operatorRight=1)sqlStr=年份,Monthas月,Salaryas人为fromSalary,Employee_Info,Dept_InfowhereYear=0andSalary.EmpID=Employee_Info.EmpIDandEmployee_Info.DeptID=Dept_Info.DeptIDandDept_Info.DeptIDinString.Format(selectSalary.EmpIDas职工号,Yearas(selectDeptIDfromEmployee_In

14、fowhereEmpID=1),YearStr,this.mainForm.person.userName);elsesqlStr=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalarywhereYear=0andEmpID=1,YearStr,this.mainForm.person.userName);if(count=0)sql+=sqlStr;count=1;elsesql+=intersect+sqlStr;check2.Checked=false;月份第8页共18页武汉产业学院数据库使用零碎计划i

15、f(check3.Checked)MonthStr=Convert.ToInt32(MonthComBox.SelectedItem.ToString();if(this.mainForm.operatorRight=2)sqlStr=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalarywhereMonth=0,MonthStr);elseif(this.mainForm.operatorRight=1)sqlStr=年份,Monthas月份,SalaryasSalary.EmpID=Employee_In

16、fo.EmpIDandEmployee_Info.DeptID=Dept_Info.DeptIDandDept_Info.DeptIDinString.Format(selectSalary.EmpIDas职工号,Yearas人为fromSalary,Employee_Info,Dept_InfowhereMonth=0and(selectDeptIDfromEmployee_InfowhereEmpID=1),MonthStr,this.mainForm.person.userName);elsesqlStr=String.Format(selectEmpIDas职工号,Yearas年份,M

17、onthas月份,Salaryas工fromSalarywhereMonth=0andEmpID=1,MonthStr,this.mainForm.person.userName);if(count=0)sql+=sqlStr;count=1;elsesql+=intersect+sqlStr;check3.Checked=false;本人人为if(check4.Checked)sql=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalarywhereEmpID=0,this.mainForm.person.u

18、serName);if(count=0)sql+=sqlStr;count=1;else第9页共18页武汉产业学院数据库使用零碎计划sql+=intersect+sqlStr;check4.Checked=false;SqlCommandcommand=newSqlCommand(sql,connection);tryconnection.Open();SqlDataReaderdata=command.ExecuteReader();if(data.Read()BindData(sql);elseif(this.mainForm.operatorRight=2)sql=人为fromSalar

19、yString.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas);elseif(this.mainForm.operatorRight=1)sql=月份,SalaryasString.Format(selectSalary.EmpIDas年份,Monthas职工号,Yearas人为fromSalary,Employee_Info,Dept_InfowhereSalary.EmpID=Employee_Info.EmpIDandEmployee_Info.DeptID=Dept_Info.DeptIDandDept_Info.DeptIDi

20、n(selectDeptIDfromEmployee_InfowhereEmpID=0),this.mainForm.person.userName);elsesql=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalarywhereEmpID=0,this.mainForm.person.userName);BindData(sql);MessageBox.Show(查问掉败,不契合请求的人为信息,查寻掉败,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);ca

21、tch(Exceptionex)MessageBox.Show(ex.Message,数据库操纵掉败1,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);finally第10页共18页武汉产业学院数据库使用零碎计划connection.Close();privatevoidLoadOrCancel()mainForm=(MainForm)this.ParentForm;YearComBox.SelectedIndex=0;MonthComBox.SelectedIndex=0;YearComBox.Enabled=false;false;fals

22、e;MonthComBox.Enabled=DeptcomBox.Enabled=btnYes.Enabled=false;BindDeptComBox();if(this.mainForm.operatorRight=2)sql=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalary);elseif(this.mainForm.operatorRight=1)DeptcomBox.Visible=check1.Visible=false;false;sql=String.Format(selectSalar

23、y.EmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalary,Employee_Info,Dept_InfowhereSalary.EmpID=Employee_Info.EmpIDandEmployee_Info.DeptID=Dept_Info.DeptIDandDept_Info.DeptIDin(selectDeptIDfromEmployee_InfowhereEmpID=0),this.mainForm.person.userName);elsecheck1.Visible=false;false;check4.Visible=Deptc

24、omBox.Visible=false;sql=String.Format(selectEmpIDas职工号,Yearas年份,Monthas月份,Salaryas人为fromSalarywhereEmpID=0,this.mainForm.person.userName);BindData(sql);count=0;privatevoidgroupBox2_Enter(objectsender,EventArgse)第11页共18页武汉产业学院数据库使用零碎计划2.对表的增编削局部:ataGrid数据绑定privatevoidBindData()sql=人为fromSalaryString.

25、Format(selectEmpIDas);职工号,Yearas年份,Monthas月份,SalaryasSqlConnectionconnection=SqlDataAdapterdataAdapter=newSqlConnection(connString);newSqlDataAdapter(sql,connection);DataSetdataSet=newDataSet();dataAdapter.Fill(dataSet);dataGridView1.DataSource=dataSet.Tables0;dataGridView1.Columns0.DataPropertyName

26、=dataGridView1.Columns1.DataPropertyName=dataGridView1.Columns2.DataPropertyName=dataGridView1.Columns3.DataPropertyName=职工号;年份;月份;人为;删除privatevoidbtn3_Click(objectsender,EventArgse)cleartext();textreadwrite();btnOkOrCancel();combMonth.Enabled=combYear.Enabled=txt4.ReadOnly=true;true;true;delete;opt

27、erate=修正或更新职工人为信息privatevoidbtnOk_Click(objectsender,EventArgse)btnOkOrCancel();btnOk.Enabled=false;EmpID=txt1.Text;Year=Convert.ToString(combYear.SelectedItem.ToString();Convert.ToInt32(combMonth.SelectedItem.ToString();Month=Stringsalary=txt4.Text;if(salary=)salary=0;第12页共18页武汉产业学院数据库使用零碎计划Salary=

28、(float)Convert.ToDouble(salary.Trim();intnum=0;tryif(EmpID!=)sql=String.Format(selectcount(*)fromEmployee_InfowhereEmpID=0,EmpID);SqlCommandcommand=connection.Open();newSqlCommand(sql,connection);intc=(int)command.ExecuteScalar();connection.Close();if(c0)connection=connection.Open();sql=newSqlConnec

29、tion(connString);String.Format(selectcount(*)fromSalarywhereEmpID=0and,EmpID,Year,Month);Year=1andMonth=2SqlCommandmycmd=newSqlCommand(sql,connection);num=(int)mycmd.ExecuteScalar();connection.Close();职工的人为信息存在if(num0)if(opterate=insert)MessageBox.Show(录入不胜利,你要录入的员工的人为信息已存在!,录入掉败,MessageBoxButtons.O

30、K,MessageBoxIcon.Exclamation);textreadonly();elseif(opterate=update)sql=andYear=2andMonth=3String.Format(updateSalarysetSalary=0whereEmpID=1,Salary,EmpID,Year,Month);connection.Open();command=newSqlCommand(sql,connection);command.ExecuteNonQuery();connection.Close();BindData();textreadonly();Message

31、Box.Show(更新胜利!,更新胜利,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);else第13页共18页武汉产业学院数据库使用零碎计划connection.Open();sql=String.Format(deletefromSalarywhereEmpID=0andYear=1andMonth=2command=,EmpID,Year,Month);newSqlCommand(sql,connection);command.ExecuteNonQuery();connection.Close();BindData();MessageB

32、ox.Show(删除胜利!,删除胜利,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);textreadonly();elseif(opterate=insert)sql=String.Format(insertintoSalary(EmpID,Year,Month,Salary)values(0,1,2,3),EmpID,Year,Month,Salary);command=newSqlCommand(sql,connection);connection.Open();command.ExecuteNonQuery();connection.C

33、lose();BindData();MessageBox.Show(录入胜利!,录入胜利,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);textreadonly();elseif(opterate=update)MessageBox.Show(修正掉败,不存在要修正的人为信息!,修T改掉败,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);textreadonly();elseMessageBox.Show(删除掉败,不存在要删除的人为信息!,删除掉败,MessageBoxButtons.OK,

34、MessageBoxIcon.Exclamation);textreadonly();else第14页共18页武汉产业学院数据库使用零碎计划MessageBox.Show(不存在要治理的员工人为信息!,操纵掉败,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);textreadonly();elseMessageBox.Show(操纵掉败,请填入员工号!,操纵掉败,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);textreadonly();btnModi();btnCancel.Enabled=

35、true;catch(Exceptionex)MessageBox.Show(ex.Message,数据库操纵掉败1,MessageBoxButtons.OK,MessageBoxIcon.Exclamation);finallyconnection.Close();3.对于界面录入跟修正键跟封闭键能用,断定跟撤消键不克不及用privatevoidbtnModi()btn1.Enabled=btn2.Enabled=btn3.Enabled=true;true;true;btnOk.Enabled=false;btnCancel.Enabled=false;录入跟修正键不克不及用,断定跟撤消键

36、跟封闭键能用privatevoidbtnOkOrCancel()btn1.Enabled=btn2.Enabled=btn3.Enabled=btnCancel.Enabled=btnOk.Enabled=false;false;false;true;true;第15页共18页武汉产业学院数据库使用零碎计划将文本框清空privatevoidcleartext()txt1.Text=txt4.Text=;撤消按钮privatevoidbtnCancel_Click(objectsender,EventArgse)combYear.SelectedIndex=0;combMonth.Selecte

37、dIndex=0;combMonth.Enabled=combYear.Enabled=textreadonly();false;false;btnModi();BindData();录入按钮privatevoidbtn1_Click(objectsender,EventArgse)cleartext();textreadwrite();btnOkOrCancel();combMonth.Enabled=combYear.Enabled=true;true;opterate=insert;修正按钮privatevoidbtn2_Click(objectsender,EventArgse)cle

38、artext();textreadwrite();btnOkOrCancel();opterate=update;combMonth.Enabled=combYear.Enabled=true;true;第16页共18页武汉产业学院数据库使用零碎计划四员工人为界面:第17页共18页武汉产业学院数据库使用零碎计划五课程计划总结:本次课程计划,跟别的两个同窗一同,实现了人事人为治理零碎的计划,经过本次课程计划,晋升了咱们的团队合作才干,增强了咱们入手、考虑跟处置咨询题的才干,测验了我所进修的常识,在计划进程中,与同窗分工计划,跟同窗们互相讨论,互相进修,互相监视。经过实现零碎的计划,使本人对C#编

39、写C/S零碎有了进一步的看法,同时也进步了C#编程才干。本次计划顶用到了数据库、软件计划等,使得本人对所学的内容愈加明晰明白。并使本人在种种东西的集成开辟有了全新领会。本次课程计划最年夜的播种是了解到了团队合作以及义务计划的主要性,对于现在的本人来说想要独破实现一个软件的计划是不理想的,分工合作能够非常好地处置那个咨询题,但合作中也会呈现非常多咨询题,因为每团体独破计划一个模块,独自运转时不咨询题,但最初零碎功用综合运转时,因为每团体各个局部的计划思绪不尽一样,会出非常多过错,需要跟同组人员进展相同,而后各自对本人的模块进展须要的修正,才干综合构成一个完好的可用的零碎,由此可见在软件计划的进程中,合作是非常主要的,同时每个成员间必需有非常好的相同,才干防止计划中呈现的不兼容的过错,才干使工程做得完满。在试验中,清楚了C#的反应机制:一个代办东西包含了访咨询一个特定东西的特定办法所需的信息.只需把它当成一个聪慧的办法已存在的办法进展范例平安的挪用次试验对我的协助特别之年夜。指针就行了。代办东西能够被挪动到另一个地点,而后能够经过访咨询它来对.一个反应办法是代办的特例。对C#的强范例特色有了更深的了解。本第18页共18页

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 教育专区 > 初中其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服