1、 public string 密码; public string 类型; public class 学生 public string 学号; public string 姓名; public string 性别; public string 生日; public string 籍贯; public string 专业; public string 学院; public string 班级; public string 入学; public string 民族; public class 成绩 public string 课程; public int 学期; public int 分数;2. C
2、lass2.csusing System.Data.Sql;using System.Data.SqlClient;/引入相关的类 public class DbControl/由界面来调用的对象,负责和数据表进行连接并操作 private SqlConnection conn; private SqlCommand cmd; public DbControl() conn = new SqlConnection(Data Source=PC2011122607VFZ;Initial Catalog=学生学籍管理系统;Integrated Security=True);/创建数据库连接对象 p
3、ublic void Create(string 用户, string 密码, string 类型)/添加 conn.Open();/打开数据库连接 string str = insert into 登录 values( + 用户 + , + 密码 + + 类型 + );/根据传递过来的参数组织插入语句 cmd = new SqlCommand(str,conn);/创建SQL语句执行对象 cmd.ExecuteNonQuery();/插入操作执行ExecuteNonQuery方法 conn.Close();/关闭数据库连接 public void Delete(string 用户)/毕业后(
4、用户管理)delete from 登录 where 用户= cmd = new SqlCommand(str, conn); public void Delete_2(string 用户, string 密码)/毕业后(用户管理)delete from 登录 where (用户=AND 密码= public 登录 loading(string 用户,string 密码)select * from 登录 where (用户= SqlDataReader reader = cmd.ExecuteReader(); 登录 登录实体 = new 登录(); while (reader.Read() !
5、= false)/查询有结果 登录实体.用户 = reader.GetString(0); 登录实体.密码 = reader.GetString(1); 登录实体.类型 = reader.GetString(2); return 登录实体; public void Create_1(string 学号, string 课程, int 学期, int 分数)insert into 成绩 values( + 学号 + + 课程 + , + 学期 + + 分数 + public 成绩 Create_2(string 学号, string 课程, int 学期)select * from 成绩 whe
6、re (学号=AND 课程=AND 学期= 成绩 成绩实体 = new 成绩(); 成绩实体.学号 = reader.GetString(0); 成绩实体.课程 = reader.GetString(1); 成绩实体.学期 = reader.GetInt32(2); 成绩实体.分数 = reader.GetInt32(3); return 成绩实体; public void Create_3(string 学号, string 姓名, string 性别, string 生日, string 籍贯, string 专业, string 学院, string 班级,string 入学,strin
7、g 民族)insert into 学生 values( + 姓名 + + 性别 + + 生日 + + 籍贯 + + 专业 + + 学院 + + 班级 + + 入学 + + 民族 + 3. Form1.csusing System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms; public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_Click(obje
8、ct sender, EventArgs e) DbControl control = new DbControl(); 登录 登录实体 = control.loading(this.textBox1.Text.ToString(),this.textBox2.Text.ToString(); textBox1.Text = textBox2.Text = textBox3.Text = if (登录实体.类型.Trim() = 学生) Form2 Form_2 = new Form2(); Form_2.ShowDialog(); else Form3 Form_3 = new Form3(
9、); Form_3.ShowDialog(); private void button2_Click(object sender, EventArgs e) private void button3_Click(object sender, EventArgs e) 登录 登录实体 = control.loading(this.textBox1.Text.ToString(), this.textBox2.Text.ToString(); control.Delete_2(textBox1.Text.ToString(), textBox2.Text.ToString(); control.Create(textBox1.Text.ToString(), textBox3.Text.ToString(), 登录实体.类型); MessageBox.Show(改密成功 private void Form1_Load(object sender, EventArgs e)4. Form2.csusing System.Drawin
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1