博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Winform中添加客户信息
阅读量:6573 次
发布时间:2019-06-24

本文共 1194 字,大约阅读时间需要 3 分钟。

namespace JinXiaoCun{    public partial class frmAddCustomer : Form    {        public frmAddCustomer()        {            InitializeComponent();        }        private void btnAddCustomer_Click(object sender, EventArgs e)        {            //insert into customer values('Cu01','陈工','男','13715687896')            string cusId = this.txtCusId.Text.Trim();            string cusName = this.txtCusName.Text.Trim();            string cusSex = this.cmbCusSex.Text;            string cusPhone = this.txtCusPhone.Text.Trim();            string strsql = "insert into customer values('" + cusId + "','" + cusName + "','" + cusSex + "','" + cusPhone + "')";            string conString = "Server=.;database=JinXiaoCun;uid=sa;pwd=sasa";            SqlConnection con = new SqlConnection(conString);            con.Open();            SqlCommand cmd = new SqlCommand(strsql, con);            cmd.ExecuteNonQuery();            con.Close();            this.txtCusId.Text = "";            this.txtCusName.Text = "";            this.cmbCusSex.Text = "";            this.txtCusPhone.Text = "";            MessageBox.Show("添加成功");                    }    }}

 

转载于:https://www.cnblogs.com/Tianxf815/p/8869587.html

你可能感兴趣的文章
我的友情链接
查看>>
Maven创建新的依赖项目
查看>>
2015年10月26日作业
查看>>
Windows Server 2003 R2安装盘部署IBM X3850 X5服务器
查看>>
《Troubleshooting SQL Server》读书笔记-CPU使用率过高(上)
查看>>
Java注释规范整理
查看>>
QEMU
查看>>
易宝典文章——怎样管理Exchange Server 2013邮件用户
查看>>
Client Notification in System Center 2012 Configuration Manager SP1
查看>>
运维监控之Nagios实战(三)&Nagios配置文件
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
内存泄露:a CDynLinkLibrary object at...的解决
查看>>
SpringBoot json null 转成空字符
查看>>
iOS 视图的模糊效果
查看>>
MySQL机sqlserver注射和php注入
查看>>
Redis笔记-List数据类型(四)
查看>>
jquery切换效果
查看>>
JVM内存调优
查看>>
STL算法之回调函数和函数对象的理解及设计
查看>>