| Author: Vijaya saradhi 25 Jul 2008 | Member Level: Silver | Rating: Points: 5 |
you can use oledb provider to communicate with msaccess database.
connection string requires following values
Provider=microsoft.jet.oledb.4.0 data source=filename.mdb
and we should provide the namespace required
Using System.Data.Oledb;
we can pass the update statement through OledbCommand object then the action will be performed if we call ExecuteNonqurey() method of the object just similar as it in sqlserver.
|