tags:

views:

26

answers:

2

What is MDAC and how we can use in our program

+3  A: 

Google is your friend

sum1stolemyname
+2  A: 

You can think of MDAC as a bunch of drivers, as a developer, you don't really need to know many details about it, just that it's installed. It used to be an issue to make sure that the right version was installed, but nowdays a recent version will be install on pretty much all Windows machines so you usually don't have to worry about it unless you're doing something advanced.

To use it just write some code to access one of the supported datasources. Look at OleDbConnection and related classes. More information about that class can be found here.

ho1