错误:其他信息:设置DataSource属性时,无法修改项集合

时间:2016-05-25 12:32:37

标签: c# combobox

我遇到了一个程序,它将文件添加到我的组合框并添加到数据库中。

我有2个按钮添加+和 - 在组合框上逐个删除字段

当我点击ADD +按钮时,我的orm中的数据意味着我有另一个组合框,lable,datetimepicker这些都添加到我的FAVORITES组合框中

fn foo<T>() -> Result<T, std::num::ParseIntError>
    where T: num_traits::Num<FromStrRadixErr = std::num::ParseIntError>,
{
    T::from_str_radix("4242", 10)
}

添加组合框中添加的数据也会添加到数据库表中

This was the latest release as of today

<!-- http://mvnrepository.com/artifact/com.itextpdf/itextpdf -->

<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.9</version>
</dependency>

当我尝试这个时,我在这里遇到了错误。

enter image description here

请帮助我解决我的问题。

1 个答案:

答案 0 :(得分:1)

@Anu不要在AddWithValue中使用combofavorite.Text

而不是

     MySqlCommand cmd = new MySqlCommand("INSERT INTO favorite (favorite) VALUES (@favo)", connection);
     cmd.CommandType = CommandType.Text;
     cmd.Parameters.AddWithValue("@favo", combofavorite.Text);

使用它:

      MySqlCommand cmd = new MySqlCommand("INSERT INTO favorite (favorite) VALUES (@favo)", connection);
      cmd.CommandType = CommandType.Text;
      cmd.Parameters.AddWithValue("@favo","Report Type: " + cmbreporttype.Text + " Date From: " + dateTimePicker1.Text + " To: " + dateTimePicker2.Text);

希望它会有所帮助。