how to access the queries made and stored in MS Access (thru C# Code)?

  • Thread starter Thread starter b. hotting
  • Start date Start date
B

b. hotting

hi,

Does anybody know how to access the queries made and stored in MS Access
thru C# Code.

thanks,
bjorn
 
Its been awhile since I have done this but I can point you in the right
direction.

You need to use the OleDB namespace available in dotnet.

I believe its System.Data.OleDB

Then in a connection string you can specify the .mdb database you want
to connect to. Then you run the queries kind of how you run stored
procedures in SQL Server.

Sorry, I don't have any code as an example but that should help get you
started

DKode
 
Back
Top