Role of data provider in ADO.NET - C#.NET

What is the role of data provider?

The .NET data provider layer resides between the application and the database. Its task is to take care of all their interactions.

The .NET Data provider can be demonstrated to be:

- SQL Server data provider
- OLEDB data provider
- ODBC Data Provider

ADO.NET supports the following OLE DB Providers:

- SQLOLEDB - Microsoft OLE DB Provider for SQL Server.
- MSDAORA - Microsoft OLE DB Provider for Oracle.
- Microsoft.Jet.OLEDB.4.0 - OLE DB Provider for Microsoft Jet.
Describe how a .Net application is compiled and executed - C#.NET
C#.NET - .Net application compilation and execution - Compilation can be done with Debug or Release configuration...
What is an Event? Define Delegate - C#.NET
C#.NET - What is an Event? Define Delegate - Delegates are kind of similar to the function pointers. But they are secure and type-safe...
C#.NET Assembly manifest
C#.NET - What is Assembly manifest? - The manifest of an assembly contains assembly's data like version...
Post your comment