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

    ADO vs. DAO vs. ODBC

    Could someone explain what the advantages of using each type of data control? I need to do some database connectivity yet don't know the best method.


  2. #2
    Join Date
    Sep 1999
    Posts
    1

    Re: ADO vs. DAO vs. ODBC

    ODBC is the oldest of the access methods listed and the most difficult to grasp, for the uninitiated. Microsoft introduced DAO in an effort to minimize the difficulty encountered in using ODBC. It was supposed to, with RDO, replace ODBC. It did not. ADO is supposed to replace DAO and ODBC. It may.

    The only real reason to learn/use ODBC, right now is to support legacy systems. If you have VB6 or beyond, ADO is what you should use.


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