1 Star 2 Fork 1

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
company_zhaopin.cs 1.98 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 company_zhaopin : Form
{
public company_zhaopin()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1zcno.Text != "" && textBox2zname.Text != "" && textBox3zjob.Text != "" && textBox4zphone.Text != "" && textBox5znumber.Text != "")
{
Dao dao = new Dao();
string sql = $"insert into company_zhaopin values ('{textBox1zcno.Text}','{textBox2zname.Text}','{textBox3zjob.Text}',{textBox4zphone.Text},'{textBox5znumber.Text}')";
//string sql = $"insert into company_zhaopin values ('{textBox1zcno.Text}',{textBox2zname}','{textBox3zjob}','{textBox4zphone}','{textBox5znumber}')"; //int型单引号可以不要
//string sql = string.Format("insert into company_zhaopin values('{0}','{1}','{2}','{3}','{4}')",textBox1zcno.Text,textBox2zname.Text,textBox3zjob.Text,textBox4zphone.Text,textBox5znumber);
int n = dao.Execute(sql);//添加的值传回dao
if (n > 0)
{
MessageBox.Show("添加成功");
}
else
{
MessageBox.Show("添加失败");
}
textBox1zcno.Text = ""; //增加后清空文本框
textBox2zname.Text = "";
textBox3zjob.Text = "";
textBox4zphone.Text = "";
textBox5znumber.Text = "";
}
else
{
MessageBox.Show("你的输入有空,请重新输入");
}
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ma-menglei/job.git
git@gitee.com:ma-menglei/job.git
ma-menglei
job
大学生就业管理系统
master

搜索帮助