Results 1 to 8 of 8

Thread: [Resolved] MS ADO Requirements

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    103

    Resolved [Resolved] MS ADO Requirements

    Hi All,

    I'm working on an app in VB6 that uses MS ADO as the database engine and I've read lots about what the distribution requirements are, but I'm still pretty confused.

    The only reference to ADO in my project is "Microsoft ActiveX Data Objects 2.5 Library." Everything else is done in code - no data control, no data
    environment, etc."

    I'm thinking that the vast majority of downloaders will have Windows XP
    plus a newer version of IE, so they should have everything that they
    need...but I'm not sure.

    Is there a document somewhere that's laid out very simple that tells:

    - What version of MDAC people will need for my usage of ADO

    - What versions of IE come w/ what version of MDAC

    - What versions of Windows come w/ what version of MDAC (does it come w/
    Windows?)

    Also, should I use a different version of ADO to minimize the troubles my users will have? If so, would I have to change a bunch of code?

    Any help with this will be appreciated.

    Thanks,

    Bret Reece
    Last edited by Bret Reece; Mar 23rd, 2005 at 01:32 PM. Reason: Resolved

  2. #2
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: MS ADO Requirements

    Quote Originally Posted by Bret Reece
    Hi All,

    I'm working on an app in VB6 that uses MS ADO as the database engine and I've read lots about what the distribution requirements are, but I'm still pretty confused.

    The only reference to ADO in my project is "Microsoft ActiveX Data Objects 2.5 Library." Everything else is done in code - no data control, no data
    environment, etc."

    I'm thinking that the vast majority of downloaders will have Windows XP
    plus a newer version of IE, so they should have everything that they
    need...but I'm not sure.

    Is there a document somewhere that's laid out very simple that tells:

    - What version of MDAC people will need for my usage of ADO

    - What versions of IE come w/ what version of MDAC

    - What versions of Windows come w/ what version of MDAC (does it come w/
    Windows?)

    Also, should I use a different version of ADO to minimize the troubles my users will have? If so, would I have to change a bunch of code?

    Any help with this will be appreciated.

    Thanks,

    Bret Reece
    We developed against MDAC 2.6 - some of my customers have MDAC 2.8 installed (required for MS Server 2003 boxes) - it worked effortlessly - no change to my code at all.

    In short I do not see a problem with someone having the most recent MDAC installed on the box they are using.

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    103

    Re: MS ADO Requirements

    Szlamany,

    Thanks for the response. So, with a reference to "Microsoft ActiveX Data Objects 2.5 Library" in my project, I guess I'm good w/ Windows 98SE users and above (for the most part)? Is that your opinion?

    Thanks again,
    Bret

  4. #4
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: MS ADO Requirements

    Quote Originally Posted by Bret Reece
    Szlamany,

    Thanks for the response. So, with a reference to "Microsoft ActiveX Data Objects 2.5 Library" in my project, I guess I'm good w/ Windows 98SE users and above (for the most part)? Is that your opinion?

    Thanks again,
    Bret
    I've read about issues with Win98 and newer versions of MDAC (maybe the MSDN site can give you more details).

    So be careful of upgrading the Win98 box.

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: MS ADO Requirements

    Quote Originally Posted by Bret Reece
    - What version of MDAC people will need for my usage of ADO
    Just include MDAC_TYP.exe when deploying your app and it'll get installed on the end machine. You shouldn't need to worry about what version of MDAC the end user has.

  6. #6

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    103

    Resolved Re: MS ADO Requirements

    Thanks for the replies.

    I finally found a good FAQ via google. The URL is http://www.able-consulting.com/ADO_Faq.htm. It's helped a lot.

    Thanks,
    Bret

  7. #7
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: MS ADO Requirements

    Quote Originally Posted by szlamany
    I've read about issues with Win98 and newer versions of MDAC (maybe the MSDN site can give you more details).

    So be careful of upgrading the Win98 box.
    Bret - thanks for the FAQ - I decided to copy/paste the pertinent Win98 issue right here from that FAQ

    Q47) After installing MDAC 2.5 on a Windows 95/ 98 or NT 4.0 machine, I get a Windows Setup dialog every time I reboot my computer. Why?

    There is a bug in the MDAC 2.5 install which leaves a "mdac_runonce" entry in the "run" system registry key.

    To fix this problem, either install MDAC 2.6, or obtain a fix from Micxrosoft support, or just remove the "mdac_runonce" entry.

    For more information, please see the following Microsoft KB article:
    Q268062 - MDAC 2.5 Configuration Dialog Appears After Every Restart


    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  8. #8

    Thread Starter
    Lively Member
    Join Date
    Feb 2005
    Posts
    103

    Re: [Resolved] MS ADO Requirements

    szlamany,

    Great information! Thanks. I'll put that in my support kb for when I get requests from 95/98 users.

    Bret

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