使用 insert into(WPF 应用程序)时不会填充数据库
当我尝试使用应用程序向数据库添加新行时,一切正常,但是当我关闭程序时,数据库不包含新插入的行。
下面是我的代码:
string n;
n = txtNaslov.Text;
SqlConnection con = new SqlConnection("my connection string...");
try
{
SqlCommand cmd = new SqlCommand("insert into Table1 values('" + n + "', con);
//i ve added the other
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
catch (SqlException ex)
{
}
finally
{
}
我做错了什么?
When I try to use the application to add new rows to my database everything goes OK, but when I close the program the database does not contain the newly inserted row.
Below is my code:
string n;
n = txtNaslov.Text;
SqlConnection con = new SqlConnection("my connection string...");
try
{
SqlCommand cmd = new SqlCommand("insert into Table1 values('" + n + "', con);
//i ve added the other
con.Open();
cmd.ExecuteNonQuery();
con.Close();
}
catch (SqlException ex)
{
}
finally
{
}
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试反转一些行...
首先打开你的cmd然后设置你的SQL语句,
这可能会清除你的sql。
不要丢弃 David 的评论,填写 catch 语句,它可以告诉你你做错了什么
Try to invert some lines...
First Open your cmd and then set your SQL Statement,
this may be wiping out your sql.
Don't discard David's comment, fill catch statement, it can show you what are you donig wrong