0

我目前正在构建一个应用程序,用户将数据输入到网格中,然后将其插入到 SQl 表中。但是,我在让它插入多于顶行时遇到问题。我收到一条错误消息,指出已为该过程声明了太多参数。我试图执行一个循环,每行都发生插入。运行时插入顶行但忽略其他任何内容

    For i = 0 To dgvRI.Rows.Count - 1
            sqlRI.CommandText = "dbo.vb_insert"
            sqlRI.CommandType = CommandType.StoredProcedure
            sqlRI.Parameters.Add("@accid", SqlDbType.VarChar).Value = accid
            sqlRI.Parameters.Add("@rnum", SqlDbType.Int).Value = dgvRI.Rows(i).Cells(0).Value
            sqlRI.Parameters.Add("@rilim", SqlDbType.Decimal).Value = dgvRI.Rows(i).Cells(1).Value
            sqlRI.Parameters.Add("@riatt", SqlDbType.Decimal).Value = dgvRI.Rows(i).Cells(2).Value
            sqlRI.Parameters.Add("@rishare", SqlDbType.Decimal).Value = dgvRI.Rows(i).Cells(3).Value
            sqlRI.Parameters.Add("@rname", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(4).Value
            sqlRI.Parameters.Add("@bname", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(5).Value
            sqlRI.Parameters.Add("@type", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(6).Value
            sqlRI.Parameters.Add("@cov", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(7).Value
            sqlRI.Parameters.Add("@prop", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(8).Value
            sqlRI.Parameters.Add("@loc", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(9).Value
            sqlRI.Parameters.Add("@con", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(10).Value
            sqlRI.Parameters.Add("@prem", SqlDbType.Decimal).Value = dgvRI.Rows(i).Cells(11).Value
            sqlRI.Parameters.Add("@curr", SqlDbType.VarChar).Value = dgvRI.Rows(i).Cells(12).Value
            i += sqlRI.ExecuteNonQuery()
        Next
    Catch ex As Exception
        MessageBox.Show(ex.Message)
    End Try
4

1 回答 1

0

为每一行创建新实例,我认为您的对象每次都添加相同的参数。

        sqlRI = new sqlRI();//create new instance everytime
        sqlRI.CommandText = "dbo.vb_insert"
        sqlRI.CommandType = CommandType.StoredProcedure
        sqlRI.Parameters.Add("@accid", SqlDbType.VarChar).Value = accid
于 2012-11-08T16:53:35.343 回答