INSERT语句不会插入使用C#Winform的SQL Server数据库

时间:2016-02-09 18:12:22

标签: c# sql-server winforms ado.net

我试图将客户的信息从C#Winforms插入到SQL Server数据库中,但是当我点击Add按钮时没有显示错误,没有数据被添加到数据库中。

以下是添加功能的代码:

 private void acceptButton_Click(object sender, EventArgs e)
 {
        SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString);

        String query = "INSERT INTO Costumer(Name, Address, Phone, Note) VALUES(@name, @address, @phone, @note)";

        SqlCommand command = new SqlCommand(query, con);


        command.Parameters.AddWithValue("@name", nameTextBox.Text);
        command.Parameters.AddWithValue("@address", addressTextBox.Text);
        command.Parameters.AddWithValue("@phone", phoneTextBox.Text);
        command.Parameters.AddWithValue("@note", noteTextBox.Text);

        try
        {
            con.Open();
            command.ExecuteNonQuery();
            con.Close();
            this.Close();
        }
        catch (SqlException exception)
        {
            MessageBox.Show(exception.Message.ToString(), "Error Message");
        }
    }

以下是Costumer表的设计

CREATE TABLE [dbo].[Costumer] (
  [CostumerId] INT           IDENTITY (1, 1) NOT NULL,
  [Name]       VARCHAR (50)  NULL,
  [Address]    VARCHAR (50)  NULL,
  [Phone]      VARCHAR (16)  NULL,
  [Note]       VARCHAR (250) NULL,
  PRIMARY KEY CLUSTERED ([CostumerId] ASC)
);

不确定问题出在哪里。

编辑:我在winform项目中使用的连接字符串。

这是连接字符串:

<add name="myConnectionString" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\database.mdf;Integrated Security=True;Connect Timeout=30;MultipleActiveResultSets=True;" providerName="System.Data.SqlClient"/>

我为几个SELECT查询使用了相同的连接字符串,它们工作正常。

1 个答案:

答案 0 :(得分:3)

这是一种常见情况。您在项目文件之间列出了名为database.mdf的数据库文件,如果查看该文件的属性,您会注意到属性Copy To Output directory设置为Copy Always

现在,在WinForms应用程序中,Output Directory是主项目文件夹下的文件夹BIN \ DEBUG(或RELEASE和x86变体)。
您的connectionstring中使用的DataDirectory substitution string指向此文件夹 因此,您执行的每个插入都会将记录添加到该文件夹​​中的数据库

当然,如果你没有看到添加的记录,那么很可能你正在查看项目文件夹中的数据库,而你的代码没有插入....

要修复,请将属性更改为Copy If NewerCopy Never,并确保用于查看数据库表的工具使用指向BIN \ DEBUG文件夹中的数据库的连接字符串