收藏 分销(赏)

C与SQL数据库学生成绩标准管理系统完整代码.docx

上传人:a199****6536 文档编号:2496647 上传时间:2024-05-30 格式:DOCX 页数:36 大小:386.16KB
下载 相关 举报
C与SQL数据库学生成绩标准管理系统完整代码.docx_第1页
第1页 / 共36页
C与SQL数据库学生成绩标准管理系统完整代码.docx_第2页
第2页 / 共36页
C与SQL数据库学生成绩标准管理系统完整代码.docx_第3页
第3页 / 共36页
C与SQL数据库学生成绩标准管理系统完整代码.docx_第4页
第4页 / 共36页
C与SQL数据库学生成绩标准管理系统完整代码.docx_第5页
第5页 / 共36页
点击查看更多>>
资源描述

1、数据库技术及应用项目设计汇报学生成绩管理系统 姓名:Celia Yan -01-07一设计目标及意义在现在高校日常管理中,学生成绩管理系统是其中很关键一环,尤其是目前学校规模不停扩大,学生人数日益增加,课程门类多,校区分散等实际情况,学生成绩统计功效越来越繁重,稍有疏忽就会出现差错。所以,学生成绩管理系统更含有很大实际应用意义。在互联网快速崛起今天,改革传统手工录入方法,公正,正确,立即反应学生信息和成绩情况,以适应信息时代要求,是学生成绩管理系统一个新理念。经过成绩管理能够大大提升学校工作效率。学生成绩管理系统应该完成以下两个方面内容:学生档案资料管理、学生成绩管理。经过学生成绩管理系统能够

2、做到信息规范管理,科学统计和快速查询、修改、增加、删除等,降低管理方面工作量。二关键功效该系统关键用于学校学生信息管理,总体任务是实现学生信息关系系统化、规范化和自动化,其关键任务是用计算机对学生信息进行日常管理,如查询、修改、增加、删除,另外还考虑到用户登录权限,针对学生信息和权限登录学生成绩管理系统。本系统关键包含注册管理、老师管理、学生信息查询、添加、修改、删除等部分。其关键功效有:(1) 学生信息添加,包含输入学生基础信息和成绩。(2) 学生信息查询,包含查询学生基础信息和成绩。(3) 学生信息修改,包含修改学生基础信息和成绩。(4) 学生信息删除,包含删除学生基础信息和成绩。(5)

3、登录用户密码修改,用户登录到系统可进行对应用户密码修改。(6) 管理员用户对用户名管理,包含添加新用户、删除用户。 学生成绩管理系统是经典信息管理系统,其开发关键包含后台数据库建立和维护和前端应用程序开发两个方面。对于前者要求建立起数据一致性和完整性强、数据安全性好数据库。对于后者则要求应用程序功效完备,易使用。该管理系统我使用是Microsoft Visual Studio 及 Microsoft SQL Server 。系统功效步骤图图 2.1 系统功效步骤三数据库设计3.1本系统数据库采取是SQL Server 。该数据库包含学生成绩表、用户登录表用于纪录学生基础信息数据库表结构以下:成

4、绩表物理结构图3.1图3.2用户登录表物理结构:图3.3图3.43.2触发器删除DLB中统计时同时删除CJB中姓名相同统计USE studentscoreGO/* Object: Trigger dbo.dlb_delete Script Date: 01/07/ 12:42:17 */SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER trigger dbo.dlb_deleteon dbo.dlb after deleteasbegindeclare leib varchar(50) select leib=学生from deletedde

5、lete from cjb where 姓名 in (select 用户名 from deleted)End3.3数据库连接 string constr = Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); string sqlstr = select * from cjb; SqlCommand cmd = new SqlCommand(s

6、qlstr, conn); SqlDataReader reader = cmd.ExecuteReader(); DataSet ds = new DataSet(); while (reader.Read() string id = reader学号.ToString(); string name = reader姓名.ToString(); MessageBox.Show(string.Format(id=0,name=1,学号,姓名); 四系统实现 4.1.登录界面图4.1该界面是学生成绩管理系统登录界面,能够选择作为学生,管理员或老师身份登录。每一个进入系统人全部会看到目前时间,在登

7、录时只有用户名,密码,和身份相符合时才能进入系统,不然登录无法成功。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using System.Data.SqlClient;namespace WindowsFormsApplication

8、1 public partial class Form1 : Form static public string sn, sub; public Form1() InitializeComponent(); Form2 fr2 = new Form2(); Form3 fr3 = new Form3(); Form4 fr4 = new Form4(); private void Form1_Load(object sender, EventArgs e) timer1.Start(); private void label1_Click(object sender, EventArgs e)

9、 private void button1_Click(object sender, EventArgs e) string constr = Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); if (textname.Text = | textpassword.Text = ) MessageBox.Show(信息

10、不全,请不要遗漏信息!); if (rbtnmanager.Checked) string cstr = select * from dlb where 类别=管理员 and 用户名= + textname.Text.Trim() + and 密码= + textpassword.Text.Trim() + ; SqlCommand comm = new SqlCommand(cstr, conn); SqlDataReader dr = comm.ExecuteReader(); if (dr.Read() sn = textname.Text.Trim(); fr4.Show(); thi

11、s.Visible = false; ; else MessageBox.Show(密码或用户名犯错,请重新输入!); textname.Text = ; textpassword.Text = ; if (rbtnteacher.Checked) string cstr = select * from dlb where 类别=老师 and 用户名= + textname.Text.Trim() + and 密码= + textpassword.Text.Trim() + ; SqlCommand comm = new SqlCommand(cstr, conn); SqlDataReade

12、r dr = comm.ExecuteReader(); if (dr.Read() sn = textname.Text.Trim(); sub = dr.GetValue(3).ToString(); fr3.Show(); this.Visible = false; else MessageBox.Show(密码或用户名犯错,请重新输入!); textname.Text = ; textpassword.Text = ; if (rbtnstudent.Checked) string cstr = select * from dlb where 类别=学生 and 用户名= + text

13、name.Text.Trim() + and 密码= + textpassword.Text.Trim() + ; SqlCommand comm = new SqlCommand(cstr, conn); SqlDataReader dr = comm.ExecuteReader(); if (dr.Read() sn = textname.Text.Trim(); fr2.Show(); this.Visible = false; else MessageBox.Show(密码或用户名犯错,请重新输入!); textname.Text = ; textpassword.Text = ; c

14、onn.Close(); conn.Dispose(); private void button2_Click(object sender, EventArgs e) Application.Exit(); private void timer1_Tick(object sender, EventArgs e) label4.Text = 目前时间: + DateTime.Now.ToLongDateString() + + DateTime.Now.ToLongTimeString(); 4.2学生成绩管理图4.2设计过程:此部分关键针对学生信息管理,能够查询学生全部成绩信息,实现成绩添加、

15、删除、修改、计算平均分等功效。还能够修改目前用户下密码。 private void Form2_Load(object sender, EventArgs e) label1.Text = Form1.sn + 同学,欢迎你进入成绩管理系统!; timer1.Start(); groupBox1.Visible = false; groupBox2.Visible = false; private void button1_Click(object sender, EventArgs e) private void button3_Click(object sender, EventArgs

16、e) / string constr = Password=null;Persist Security Info=True;User ID=BINIANDOUKOUadministrator;Initial Catalog=studentscore;Data Source=BINIANDOUKOUSQLEXPRESS; /SqlConnection conn = new SqlConnection(constr); /conn.Open(); /SqlDataAdapter da = new SqlDataAdapter(Select * from cjb where 姓名=+textBox1

17、 .Text , conn); /DataSet ds = new DataSet(); /da.Fill(ds, usertable); /dataGridView1.DataSource = ; private void toolStripButton1_Click(object sender, EventArgs e) dataGridView1.Visible = true; groupBox1.Visible = false; groupBox2.Visible = false; string constr = Password=617804;Persist Security Inf

18、o=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); SqlDataAdapter da = new SqlDataAdapter(select * from cjb where 姓名= + Form1.sn.Trim() + , conn);/-具体信息 DataSet ds = new DataSet(); da.Fill(ds, usertable); dataGridView1.Da

19、taSource = ds.Tablesusertable.DefaultView; conn.Close(); conn.Dispose(); private void toolStripButton2_Click(object sender, EventArgs e) private void toolStripButton4_Click(object sender, EventArgs e) groupBox1.Visible = true; private void button1_Click_1(object sender, EventArgs e) string constr =

20、Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); if (textnpd.Text != textpassword.Text) MessageBox.Show(密码输入有误,请重新输入); if (textnpd.Text = & textpassword.Text = ) MessageBox.Show(密码不许可

21、为空!); if (textnpd.Text=textpassword.Text & textnpd.Text !=) SqlCommand com = new SqlCommand(update dlb set 密码= + textpassword.Text.Trim() + where 用户名= + Form1.sn.Trim() + , conn); if (com.ExecuteNonQuery() = 1) MessageBox.Show(密码更改成功); groupBox1.Visible = false; conn.Close(); conn.Dispose(); private

22、 void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) private void toolStripButton5_Click(object sender, EventArgs e) this.Close(); Form1 l = new Form1(); l.Visible = true; private void toolStripButton6_Click(object sender, EventArgs e) / string constr = Password=null;Pers

23、ist Security Info=True;User ID=BINIANDOUKOUadministrator;Initial Catalog=studentscore;Data Source=BINIANDOUKOUSQLEXPRESS; /SqlConnection conn = new SqlConnection(constr); /conn.Open(); /SqlDataAdapter da = new SqlDataAdapter(Select * from cjb where 姓名=+textBox1 .Text , conn); /DataSet ds = new DataS

24、et(); /da.Fill(ds, usertable); /string s; /for(int i=2;i =6;i+) / / if (int.Parse(ds.Tablesusertable.Rows0i.ToString() 60) / s=int.Parse(ds.Tablesusertable.Rows0i.ToString(); / private void groupBox2_Enter(object sender, EventArgs e) dataGridView1.Visible = false; groupBox1.Visible = false; private

25、void toolStripButton3_Click(object sender, EventArgs e) groupBox2 .Visible=true; string constr = Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); SqlDataAdapter da = new SqlDataAdapte

26、r(Select * from cjb where 姓名=+Form1 .sn .Trim ()+ , conn); DataSet ds = new DataSet(); da.Fill(ds, usertable); int max=0,min=1001; double ave = 0.0; for(int i=2;i max) max=int.Parse(ds.Tablesusertable.Rows0i.ToString(); if (int.Parse(ds.Tablesusertable.Rows0i.ToString()min ) min=int.Parse(ds.Tablesu

27、sertable.Rows0i.ToString(); txthscore.Text=max.ToString(); txtlscore.Text=min.ToString(); txtall.Text=ds.Tablesusertable.Rows0总分.ToString(); ave=int.Parse(ds.Tablesusertable.Rows0总分.ToString()/(double)5; txtave.Text=ave.ToString(); conn.Close();conn.Dispose(); private void timer1_Tick(object sender,

28、 EventArgs e) label2.Text=目前时间:+DateTime.Now.ToLongDateString()+DateTime.Now.ToLongTimeString(); 4.3老师管理界面 图4.3设计过程:此部分关键针对老师信息管理,能够查询学生全部成绩信息,实现成绩添加、删除、修改、成绩升序排序等功效。还能够修改目前用户下密码。private void button1_Click(object sender, EventArgs e) /查找 string constr = Password=617804;Persist Security Info=True;Use

29、r ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn= new SqlConnection(constr); conn.Open(); if (comboBox1.Text=学号) SqlCommand cm=new SqlCommand(select 学号,+Form1 .sub + from cjb where 学号=+ textBox1.Text+,conn ); if (cm.ExecuteScalar ()=null)MessageBox.Show(用户名不存在); else Sql

30、DataAdapter da =new SqlDataAdapter(select 学号,+Form1.sub+ from cjb where 学号=+textBox1.Text+,conn); DataSet ds =new DataSet(); da.Fill (ds ,chaxun); dataGridView1.DataSource=ds.Tableschaxun.DefaultView; if (comboBox1.Text=姓名) SqlCommand cm=new SqlCommand(select 姓名, + Form1.sub + from cjb where 姓名= + t

31、extBox1.Text+,conn ); if (cm.ExecuteScalar()=null)MessageBox.Show(该用户不存在); else SqlDataAdapter da = new SqlDataAdapter(select 姓名,+Form1.sub + from cjb where 姓名= + textBox1.Text + ,conn ); DataSet ds = new DataSet(); da.Fill (ds,table); dataGridView1.DataSource=ds.Tablestable.DefaultView; conn.Close(

32、);conn.Dispose(); private void textBox1_TextChanged(object sender, EventArgs e) private void toolStripButton2_Click(object sender, EventArgs e) /查找 groupBox3 .Visible =false ; groupBox1.Enabled = true; groupBox2.Enabled = false; private void toolStripButton1_Click(object sender, EventArgs e) /全部成绩 g

33、roupBox3.Visible = true; string constr = Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=YANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); SqlDataAdapter da = new SqlDataAdapter(select 学号,姓名, + Form1.sub + from cjb ,conn); DataSet d

34、s = new DataSet(); da.Fill(ds, table); dataGridView1 .DataSource =ds.Tables table.DefaultView; conn.Close ();conn .Dispose(); private void button2_Click(object sender, EventArgs e) /修改成绩 string constr = Password=617804;Persist Security Info=True;User ID=ywj;Initial Catalog=studentscore;Data Source=Y

35、ANJING; SqlConnection conn = new SqlConnection(constr); conn.Open(); SqlCommand com = new SqlCommand(update cjb set + Form1.sub + = + textBox3.Text + where 姓名 = + textBox4.Text + , conn); if (com.ExecuteNonQuery() = 1) MessageBox.Show(修改成功); else MessageBox.Show(信息有误,请重新输入); conn.Close(); conn.Dispose(); private void toolStripButton3_Click(object sender, Ev

展开阅读全文
相似文档                                   自信AI助手自信AI助手
猜你喜欢                                   自信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 

客服