新手求助阿。。
怎么样才能连接数据库把填好的数据添加到数据库的表中
private void Button3_Click(object sender, System.EventArgs e)
{
这里不知道写什么阿
}
建议你找些我们论坛里的例子看一下,先研究研究再说.
根据你这个问题可以这样解决:
private void Button3_Click(object sender, System.EventArgs e)
{
//这里应该写这个
SqlConnection con = new SqlConnection(conStr);
con.Open(); //连接数据库
try
{
string inst=string.Format("insert into 表名(列名,列名,列名) values ('"textBox1.Text"','0',"comboBox1.Text")");//向数据库表里添加三个数据,第一个是varchar型数据,其他两个是数字类型的数据,区别是没有加''号
SqlCommand cmd=new SqlCommand(inst,con);
cmd.ExecuteNonQuery();//执行sql语句进行插入操作
MessageBox.Show("新数据已纪录!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}
con.Close();
}