使用 insert into(WPF 应用程序)时不会填充数据库

发布于 2024-12-01 22:48:04 字数 428 浏览 0 评论 0原文

当我尝试使用应用程序向数据库添加新行时,一切正常,但是当我关闭程序时,数据库不包含新插入的行。

下面是我的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-12-08 22:48:04

尝试反转一些行...

首先打开你的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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文