What is the difference between ODBC and OleDB?

后端 未结 3 1067
遇见更好的自我
遇见更好的自我 2021-02-15 12:31

I found this question here: OLEDB v/s ODBC

Which gave me more information, but did not really answer the question I\'m asking, so I shall proceed from there.

I a

3条回答
  •  执笔经年
    2021-02-15 12:50

    If you're programming in C#, you will not directly use either one. You'll use ADO.NET in some form.

    True, the provider that you specify in your connection string may turn out to be an ODBC provider or an OleDB provider, but this will not matter to your code. ADO.NET will both APIs from your view.

提交回复
热议问题