How can I Use ADODB in XP Embedded

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All:

I would like to know how to Use ADODB in "XP Embedded".

My program was originally designed for desktops using .NET Framework
1.1, but now I would like to run it on "XP Embedded". But when I access the
AccessFile(*.mdb). "XP Embedded" told me that I don't have "Microsoft Jet
OLEDB 4.0" on the machine. Thus, I tried to rebuild my "XP Embedded", but I
didn't find any component about "JET" or "OLEDB" or "ADODB". Could anyone
help me to resolve this problem?

Best Regards.
 
I do not have a direct answer to your query, but I will state that XP
Embedded requires that you add every package you need to build your embedded
implementation. The missing piece here seems to be the portions of the MDAC
that relate to Jet. The latest MDAC installs have the core and all OLEDB
provides EXCEPT MDAC. It is a separate install for all Windows computers.
This means it will be a separate package for your embedded install.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Dear Cowboy:

Thank you for your responding.
I've just solved this problem today. In order to make XP Embedded being
able to provide ADO Connection. I simply copied the file "msjetoledb40.dll"
from a XP Professional, and using "regsvc32" to register it. And guest what,
it totally solved my problem. I think someone who has the same problem could
try this too^^
Best Regards
 
Back
Top