The following sub is used to store in the dataset a new record/row.

With dssupport.Tables("Supportcall")
NewRow = .NewRow()
NewRow("ID") = Me.txtcallnumber.Text
NewRow("Description")=Me.txtcalldescription.Text
.Rows.Add(NewRow)
End With

However when I come to hit the update the database with

dbsupport.Update(dssupport, "Supportcall")

I am bombed out with a insertcommand error.

How and where do I configure this?