如何在一个按钮单击事件中编写两个插入查询

如何在一个按钮单击事件中编写两个插入查询

本文介绍了如何在一个按钮单击事件中编写两个插入查询?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在一个按钮单击事件中编写两个插入查询?请提供一些示例代码........

How to write two insert query''s in one button click event? please give some sample code........

推荐答案

//set your query in sqlcommand like folowing
SqlCommand cmd = new SqlCommand("Insert_Statement_1 ; Insert_Statement_2",con);



connect();
String s1 = "insert into tbl_1(client_id,name,address,profession,bankName) values('" + maskedTextBox49.Text + "','" + maskedTextBox2.Text + "','" + maskedTextBox3.Text + "','" + maskedTextBox4.Text + "','" + maskedTextBox1.Text + "');insert into tbl_2(client_id) values('" + maskedTextBox49.Text + "')";
SqlCommand cmd = new SqlCommand(s1);
cmd.Connection = con;
cmd.ExecuteNonQuery();
disConnect();


这篇关于如何在一个按钮单击事件中编写两个插入查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 10:38