what is a provider and driver
数据库通信中驱动程序和提供程序的作用是什么?
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.
链接地址: http://www.djcxy.com/p/92510.html下一篇: 什么是提供者和驱动程序