1 Star 2 Fork 1

Mr-Groundhog/大学生就业管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin2_xiugai.cs 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
Mr-Groundhog 提交于 2022-08-07 21:47 . 大学生就业管理系统
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;
namespace job
{
public partial class admin2_xiugai : Form
{
string ID = "";
public admin2_xiugai()
{
InitializeComponent();
}
public admin2_xiugai(string sno, string name, string Smajor, string Snumber, string Sgoto) //id可改为sno 前面的删除里面的id也要改
{
InitializeComponent();
ID = textBox1sno.Text = sno;
// textBox1sno.Text = sno;//作为主键要写一个公共变量在前面调用
textBox2name.Text = name;
textBox3major.Text = Smajor;
textBox4number.Text = Snumber;
textBox5goto.Text = Sgoto;
}
private void button1_Click(object sender, EventArgs e)
{
string sql = $"update student_news set sno='{textBox1sno.Text}',name='{textBox2name.Text }',Smajor='{textBox3major.Text }',Snumber='{textBox4number.Text }',Sgoto='{textBox5goto.Text }' where sno='{ID}'";//WHERE 后面是id 因为是前面定义的全局变量,
Dao dao = new Dao();
int n = dao.Execute(sql);
if (n > 0)
{
MessageBox.Show("修改成功");
this.Close();
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ma-menglei/job.git
[email protected]:ma-menglei/job.git
ma-menglei
job
大学生就业管理系统
master

搜索帮助