-1

嗨,它显示了这样的错误......
错误:- 不存在从对象类型 System.Data.DataRowView 到已知托管提供程序本机类型的映射。我是错误部分的基础............!

    private void button1_Click(object sender, EventArgs e)
    {
        String connectionString = @"Connection String Here ";
        SqlConnection connection = new SqlConnection(connectionString);
        connection.Open();

        // INSERTION 
        string query = "INSERT INTO StudentMaster(RollNo,Name,Gender,FathersName,Course,Branch,Semester,Section,ContactNo1,ContactNo2,EmailId) VALUES ('" + textBox1.Text + "', '" + textBox2.Text + "', @Gender,'" + textBox3.Text + "', '" + comboBox1.Text + "','" + comboBox2.Text + "', '" + comboBox3.Text + "', '" + comboBox4.Text + "','" + textBox4.Text + "', '" + textBox5.Text + "', '" + textBox6.Text + "'";
        SqlCommand command = new SqlCommand(query, connection);

        // Radio button
        if (radioButton1.Checked)
        {
            command.Parameters.AddWithValue("@Gender", "Male");
        }
        else
        {
            command.Parameters.AddWithValue("@Gender", "Female");
        }

        // value store for combobox
        //command.Parameters.AddWithValue("@DOB", dateTimePicker1.Text);
        command.Parameters.AddWithValue("@Course", comboBox1.SelectedItem);
        command.Parameters.AddWithValue("@Branch", comboBox2.SelectedItem);
        command.Parameters.AddWithValue("@Semester", comboBox3.SelectedItem);
        command.Parameters.AddWithValue("@Section", comboBox4.SelectedItem);

        command.ExecuteNonQuery();
        connection.Close();

        if (MessageBox.Show("Do you really want to INSERT??", "Insert", MessageBoxButtons.OKCancel) == DialogResult.OK)
        {
            MessageBox.Show("INSERTED");
        }
    }
4

2 回答 2

1

SelectedValue 是类的对象,用作DataRow 的DataRowView 视图,使用方式相同,即:DataRowView drv = (DataRowView) comboBox1.SelectedValue;

于 2013-10-02T09:33:34.173 回答
0

我自己解决了这个问题:

command.Parameters.AddWithValue("@Course", comboBox1.Text);
command.Parameters.AddWithValue("@Branch", comboBox2.Text);
command.Parameters.AddWithValue("@Semester", comboBox3.Text);
command.Parameters.AddWithValue("@Section", comboBox4.Text);
于 2013-09-24T05:55:25.840 回答