1
Answer

Data Sources

F D

F D

14y
2.2k
1

Hello,
I wanted to know what are the differences between ADO, OLEDB, SQL and ODBC. I understand that these are interfaces that allow you to access a data source or multiple data sources (please correct me if I am wrong). When should I be using these well? Because it seems like at times when programming I can be using any one of these. 
Please help at your earliest convenience.
 
Thanks.
 
Fabe
Answers (1)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y

SQL is a standard computer language for accessing and managing data in a database. It was initially created by Edgar F. Codd of IBM.
 
SQL Server is Microsoft's database management system that uses SQL. There are many other database management systems, such as DB2 from IBM. The predecessor to DB2 (IBM System R in the early 1970s) was the first to implement SQL.
 
ODBC is a very low-level interface to data. The data can be in many formats and managed by many types of software. To use ODBC, the data must have an ODBC driver. I suggest avoiding ODBC. I call it low-level becasue it is very technical to use and there are many details that you must use to use ODBC.
 
OLEDB is a more flexible and more developed interfaced to data. It was designed after ODBC. It is also low-level but it was designed for better performance and flexibility than ODBC. You usually want to avoid OLEDB if ADO is available to do what you need to do.
 
ADO is a higher-level interface. ADO is what Microsoft should have designed in the beginning, but they do things in reverse; they usually develop the low-levely technical solution first, then decide to do something more convenient. C# programmers can use ADO .Net; you should too. Just use the classes that .Net provides and you will be good. I think that for some things, such as Access databases, we must use OLEDB but if you use the classes in .Net then you will be good.
 
Look at the articles in this web site. There is something called Entities and the Entity Framework that I know very little about. That seems to be the latest toys from Microsoft. Something else that can be worth learning is TableAdapters, such as in my article Database Table Update in a DataGridView without Writing Code.
Accepted