|
-
Jun 4th, 2002, 08:24 PM
#1
Thread Starter
Junior Member
Insert Command and Update database
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|