what is a provider and driver

南楼画角 提交于 2020-01-14 14:58:27

问题


what are the roles of a driver and provider in database communication?


回答1:


These are database connector technologies used to bridge between a standard API and multiple database types having different communication patterns, data representations, and protocols.

The standard API could be ODBC or OLEDB, the more common ones on Windows.

Then an even higher-level API might talk to the middle API to talk to the Provider/Driver... to talk to the database engine. This higher-level API might be something like ADO or RDO.

The ODBC or OLEDB layer can be used directly, but this is rare in VB6 programs. These APIs are strongly C-oriented.



来源:https://stackoverflow.com/questions/5429026/what-is-a-provider-and-driver

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!