A
ADO.NEWBIE
I add a record to an Access db table using the following
code...
ds.Tables(0).Rows.Add(dr)
da.Update(ds, "Clients")
At this point I want to retrieve the unique ID contained
in the Access table for the new record. How do I do that?
code...
ds.Tables(0).Rows.Add(dr)
da.Update(ds, "Clients")
At this point I want to retrieve the unique ID contained
in the Access table for the new record. How do I do that?