gpt4 book ai didi

c# - 用于插入值的参数化查询

转载 作者:行者123 更新时间:2023-11-30 21:08:49 24 4
gpt4 key购买 nike

我试图使用参数化查询将值插入到 Access 数据库中:

private void button1_Click(object sender, EventArgs e)
{
if (validationcontrol())
{
MessageBox.Show(cmbjobcode.SelectedValue.ToString());
OleDbConnection oleDbConnection1 = new System.Data.OleDb.OleDbConnection(connString);
oleDbConnection1.Open();
OleDbCommand oleDbCommand1 = new System.Data.OleDb.OleDbCommand("INSERT INTO quotationmastertable (quotationcode ,jobcode , jobpk , sillabordercharges , battabordercharges , driverpayment , rent , extra , total , discount , remark ,amount ) Values (?,?,?,?,?,?,?,?,?,?,?,?) ", oleDbConnection1);
oleDbCommand1.Parameters.Add(txtquotationno.Text);
oleDbCommand1.Parameters.Add(cmbjobcode.Text);
oleDbCommand1.Parameters.Add(cmbjobcode.SelectedValue);
oleDbCommand1.Parameters.Add(int.Parse(txtsilabordercharges.Text));
oleDbCommand1.Parameters.Add(int.Parse(txtbattacharges.Text));
oleDbCommand1.Parameters.Add(int.Parse(txtdriverpayment.Text));
oleDbCommand1.Parameters.Add(int.Parse(txtrent.Text));
oleDbCommand1.Parameters.Add(int.Parse(txtextra.Text));
oleDbCommand1.Parameters.Add(int.Parse(txttotal.Text));
oleDbCommand1.Parameters.Add(int.Parse(txtdiscount.Text));
oleDbCommand1.Parameters.Add(txtremark.Text);
oleDbCommand1.Parameters.Add(int.Parse(txtamount.Text));
oleDbCommand1.CommandType = CommandType.Text;
oleDbCommand1.ExecuteNonQuery();
oleDbConnection1.Close();
MessageBox.Show(txtquotationno.Text);

}
}

但我在第一行本身遇到了异常:

oleDbCommand1.Parameters.Add(txtquotationno.Text);

异常(exception)是

The OleDbParameterCollection only accepts non-null OleDbParameter type objects, not String objects.

我是编程新手;谁能帮我指出错误?

最佳答案

Add 对象的单个参数需要一个 OleDBParameter 对象。您只是传递字符串和数据。

一个简单的解决方法是使用 AddWithValue 方法:

oleDbCommand1.Parameters.AddWithValue("?", txtquotationno.Text);
oleDbCommand1.Parameters.AddWithValue("?", cmbjobcode.Text);

OleDB 并不真正使用参数名称,它是基于索引的,这就是为什么您可以将每个参数的问号作为名称传递的原因。您确实必须确保参数的顺序与查询语句的顺序相同。

关于c# - 用于插入值的参数化查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9401888/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com