CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: ADO version

  1. #1
    Join Date
    Nov 2003
    Posts
    107

    ADO version

    Hi,

    I use ADO to execute some SQL statements in my C++ code. Our test machines are windows NT. One of the NT machines is not starting our application and the error I see in the log file is Error = [COM ERROR = []. hr=[0x80004003]. ADO Version = [2.1]]..

    Looks like the ADO version I have on that box is choking with the ADO statement I have.

    EAdoConnection conn;
    class ECmdGetConfigs : public EAdoCommand{...}
    ECmdGetConfigs adoCmd(&conn);

    How do I know what version is installed on that box. Which version do I need to upgrade to and how do I do that.

    Any kind of help is appreciated.
    Thanks,
    Gurupot.

  2. #2
    Join Date
    Mar 2006
    Location
    Graz, Austria
    Posts
    273

    Re: ADO version

    you could look in registry to see any soft's version. But, attention , the structure of the registry could be different from version to version.
    Daniela
    ******
    I would love to change the world, but they won't give me the source code

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured