文本框内的数据怎样添加到数据库中?
假设一个表里有pid 和pname两个字段,怎么通过2个文本框输入数据添加到数据库中,数据库采用sqlserver,c#语言,我是菜鸟不怕详细阿
先引用:using System.Data.SqlClient;
假设你有两个textBox,一个button
在button_click事件中写上:
SqlConnection con=new SqlConnection("server=.;database=*;uid=sa;pwd=");
SqlCommand com=new SqlCommand("insert 表名 values('"+textBox1.text.toString()+"','"+textBox2.text.toString()+"')",con);
int b;
b=com.ExeNonQuery();
if(b>0)
{
MessageBox.show("插入成功");
}
else
{
MessageBox.show("插入失败");
}