ImageVerifierCode 换一换
格式:DOCX , 页数:14 ,大小:243.85KB ,
资源ID:15213864      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/15213864.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(数据库SQL课程设计Word文件下载.docx)为本站会员(b****1)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

数据库SQL课程设计Word文件下载.docx

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