![]() |
Trying to Insert a Record
I'm trying to insert a new record into an MS Access table. The code below
compiles and runs, but it doesn't write a record into the table. Can someone tell me why? Dim thisSelectCommand As New OleDb.OleDbCommand("SELECT * FROM Sessions", Me.OleDbConnection1) Dim thisDataAdapter As New OleDb.OleDbDataAdapter(thisSelectCommand) Dim thisDataset As New System.Data.DataSet() thisDataAdapter.Fill(thisDataset, "Sessions") thisDataAdapter.InsertCommand = New OleDb.OleDbCommand("INSERT INTO Sessions (Notes) VALUES('Yadda')") thisDataAdapter.Update(thisDataset, "Sessions") thisDataset.AcceptChanges() |
RE: Trying to Insert a Record
this another solution to add record
--------------- Dim thisinsDataAdapter As OleDb.OleDbDataAdapte Dim thisinsDataset As New System.Data.DataSet( thisinsDataAdapter= New OleDb.OleDb.OleDbDataAdapter("INSERT INTO Session (Notes) VALUES('Yadda')" thisinsDataAdapter(thisinsDataset, "Sessions" and you can refresh you 1st dataset again hope it help u Manj |
| All times are GMT. The time now is 11:55 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.