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
Dim NewRow As System.Data.DataRow
I am bombed out with a insertcommand error.
How and where do I configure this?
dbsupport.Update(dssupport, "Supportcall"
With dssupport.Tables("Supportcall"
NewRow = .NewRow()
NewRow("ID"
NewRow("Description"
.Rows.Add(NewRow)
End With
However when I come to hit the update the database with
Dim NewRow As System.Data.DataRow
I am bombed out with a insertcommand error.
How and where do I configure this?
dbsupport.Update(dssupport, "Supportcall"