ADO vs ADO.net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Eric Kaplan

    ADO vs ADO.net

    is that the main difference between ADO and ADO.net is

    ADO = native C++, need write more code to do query

    ADO.net = managed C++, write less code to do the same thing?
  • Dan Guzman

    #2
    Re: ADO vs ADO.net

    is that the main difference between ADO and ADO.net is
    >
    ADO = native C++, need write more code to do query
    >
    ADO.net = managed C++, write less code to do the same thing?
    To add on to the other responses, the System.Data.Sql Client namespace
    objects of ADO.NET provide native SQL Server data access from managed code.
    This is in contrast with COM-based ADO, which is basically provides a
    higher-level interface to lower level OLEDB drivers like SQLOLEDB.

    --
    Hope this helps.

    Dan Guzman
    SQL Server MVP


    "Eric Kaplan" <tobycraftse@ya hoo.comwrote in message
    news:g7jmu39oj1 ci5v993m0ung604 uroqgesed@4ax.c om...
    is that the main difference between ADO and ADO.net is
    >
    ADO = native C++, need write more code to do query
    >
    ADO.net = managed C++, write less code to do the same thing?

    Comment

    Working...