我是C#编码的新手,并且四处张望,但发现很难为我的问题外推答案。

目前,我只是想尽力将组合框中的文本和所选文本添加到简单的数据库表中。但是,当我尝试添加信息时,未处理SqlException错误。我查看了其他答案,发现可能与添加连接有关,我已经尝试过,但仍然无法正常工作...

我的代码和错误消息如下面的图片链接所示,但以防万一,这也是我的代码,

using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;
using System.Windows.Forms;

namespace SavetoDbTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            using (SqlConnection test = new SqlConnection("Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=C:\\Users\\User\\Documents\\Visual Studio 2015\\Projects\\SavetoDbTest\\SavetoDbTest\\Hobbie.mdf;Integrated Security=True"))
            {
                using (SqlCommand again = new SqlCommand())
                {
                    again.CommandText = "INSERT INTO Table Values('" + textBox1.Text + "', '" + comboBox1.Text + "')";

                    again.Parameters.AddWithValue("@Name", textBox1.Text);
                    again.Parameters.AddWithValue("@Hobby", comboBox1.Text);
                    again.Connection = test;
                    test.Open();
                    again.ExecuteNonQuery();
                    test.Close();
                    MessageBox.Show("Data Entry Successful");

                }
            }
        }
    }
}


c# - 在C#中未处理SqlException-将信息导入数据库表-LMLPHP

最佳答案

+1尝试使用参数化查询!但是你做的不对:-)

again.CommandText = "INSERT INTO Table Values('" + textBox1.Text + "', '" + comboBox1.Text + "')";
again.Parameters.AddWithValue("@Name", textBox1.Text);
again.Parameters.AddWithValue("@Hobby", comboBox1.Text);


当查询字符串不需要它们时,这将添加参数。可能这也是您看到异常的原因。

您的查询字符串必须如下所示:

again.CommandText = "INSERT INTO [Table] Values(@Name, @Hobby)";


另外,TABLE是SQL中的保留字。因此,如果您的表名为Table,则应将其包装在方括号中。

关于c# - 在C#中未处理SqlException-将信息导入数据库表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39366549/

10-10 22:56