在asp.net中,要在sql数据库中插入新的数据,但为什么点击按钮后数据库里的数据没有更新呢?
protectedvoidButton1_Click(objectsender,EventArgse){SqlConnectioncon=newSqlConnection...
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["stuConnectionString"].ConnectionString);
con.Open();
string str="insert into 教职工信息表 (工号,姓名,年龄,性别,单位,学历,职称) values("+"'"+"'"+"TextBox1 .Text"+"'"
+"TextBox7 .Text"+"'"+" ,"+"'"+"TextBox2 .Text "+"'"+","+"'"+"TextBox3 .Text "+"'"+","+"'"+"TextBox4 .Text"+"'"+","+"'" +"TextBox5 .Text"+"'" +","+"'"+"TextBox6 .Text"+"'" +")";
SqlCommand cmd = new SqlCommand(str, con);
cmd.CommandText = str;
cmd.ExecuteNonQuery();
} 展开
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["stuConnectionString"].ConnectionString);
con.Open();
string str="insert into 教职工信息表 (工号,姓名,年龄,性别,单位,学历,职称) values("+"'"+"'"+"TextBox1 .Text"+"'"
+"TextBox7 .Text"+"'"+" ,"+"'"+"TextBox2 .Text "+"'"+","+"'"+"TextBox3 .Text "+"'"+","+"'"+"TextBox4 .Text"+"'"+","+"'" +"TextBox5 .Text"+"'" +","+"'"+"TextBox6 .Text"+"'" +")";
SqlCommand cmd = new SqlCommand(str, con);
cmd.CommandText = str;
cmd.ExecuteNonQuery();
} 展开
展开全部
代码有报错不?
1、连接串确定正确
2、string str = "insert into table_name(工号,姓名,年龄,性别) values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "')";
3、在看看你的表中(工号,姓名,年龄,性别)的类型是否都是varchar型
4、测试下你的TextBox1 .Text-》TextBox7 .Text是否都能获取到值
1、连接串确定正确
2、string str = "insert into table_name(工号,姓名,年龄,性别) values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "')";
3、在看看你的表中(工号,姓名,年龄,性别)的类型是否都是varchar型
4、测试下你的TextBox1 .Text-》TextBox7 .Text是否都能获取到值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码应该没什么问题,测试SQL语句写的对不对。然后再加个断点,看看按钮事件中代码有没有执行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
cmd.CommandText = str;
不需要这句
不需要这句
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["stuConnectionString"].ConnectionString);
string str = "insert into table_name(工号,姓名,年龄,性别) values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "')";
SqlCommand cmd = new SqlCommand(str,con);
con.Open();
int i = cmd.ExecuteNonQuery();
if (i > 0)
{
MessageBox.Show("数据添加成功!", "提示");
}
else
{
MessageBox.Show("数据添加失败!", "提示");
}
con.Close();
你这样试试,你写的好像有点问题!试试吧。
string str = "insert into table_name(工号,姓名,年龄,性别) values('" + TextBox1.Text + "','" + TextBox2.Text + "','" + TextBox3.Text + "','" + TextBox4.Text + "')";
SqlCommand cmd = new SqlCommand(str,con);
con.Open();
int i = cmd.ExecuteNonQuery();
if (i > 0)
{
MessageBox.Show("数据添加成功!", "提示");
}
else
{
MessageBox.Show("数据添加失败!", "提示");
}
con.Close();
你这样试试,你写的好像有点问题!试试吧。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询