Data access error in win98 Executable file

venky

Active member
Joined
Sep 12, 2005
Messages
27
Programming Experience
1-3
hi friends


i am facing a problem while setup the ADO project in win 98 PC.It shows the error msg as " The .net data OLEDB provider requires Microsoft Data Access Components(MDAC) version 2.6 or later"

How can i rectify this error in win98 pc ,plz help regarding this one..

thq...
 
Hey,

As the message says you need to install MDAC 2.6 or later, MDAC is microsoft set of components for data access. I used to deploy MDAC with my application via the .net framework bootstrapper from microsoft but it looks like they're trying to phase this behaviour out as there are version problems (typical). Now I just add a launch condition in the setup to inform the user that they need to install the latest MDAC from microsoft. (This will normally only be necessary on operating systems pre-2000). At the bottom of the following link it explains how to set up the launch condition.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp

You can get the latest MDAC here...

http://www.msdn.microsoft.com/data/mdac/downloads/default.aspx

Hope this helps.
 
Back
Top