Error: Number of query values and destination fields are not the same

后端 未结 1 1026
庸人自扰
庸人自扰 2021-01-29 15:39
Public Class RoomInfo

    Dim ValTx As String
    Dim ValNr As Integer

Private Sub cboRoomType_DropDown(sender As System.Object, e As System.EventArgs) Handles cboRoom         


        
相关标签:
1条回答
  • 2021-01-29 16:08

    It is telling you that you have specified a different number of column to insert into (8) than the number of values to insert (6). This is because you have concatenated 2 of the values into 2 field I believe, just count them and you will see what I mean.

    0 讨论(0)
提交回复
热议问题