c# – 驱动程序和提供程序之间的区别

前端之家收集整理的这篇文章主要介绍了c# – 驱动程序和提供程序之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
数据库中的驱动程序和提供程序有什么区别?是否有任何解释将不胜感激.

示例:MySQL的ADO.NET驱动程序vs providerName =“System.Data.EntityClient”

解决方法

来自MSDN论坛:

Driver is a program installed on a workstation or a server; it allows programs to interact with a Database Management System (DBMS). Such as,JDBC driver provides database connectivity through the standard JDBC application program interface (APIs) available in J2EE.

A data provider is a set of libraries that is used to communicate with data source. Such as,sql data provider for sql,Oracle data provider for Oracle,OLE DB data provider for access,excel and MysqL. It serves as a bridge between an application and a data source and is used to retrieve data from a data source and to reconcile changes to that data back to the data source.

资料来源:MSDN-Forum

原文链接:https://www.f2er.com/csharp/100131.html

猜你在找的C#相关文章