Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 2.01 KB

File metadata and controls

37 lines (26 loc) · 2.01 KB
title ODBC Service Provider Interface (SPI) Reference
description ODBC Service Provider Interface (SPI) Reference
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference

ODBC Service Provider Interface (SPI) Reference

Traditionally, ODBC defined an application programming interface (API). The functions in the API can be called by applications and they should be implemented inside both the Driver Manager and the driver.

With the addition of the driver-aware connection pooling feature, ODBC introduces the service provider interface (SPI). The functions in the SPI are used for communication between the Driver Manager and driver. SPI functions are implemented by the driver; the Driver Manager does not expose SPI functions to applications. Applications should not call these functions directly.

Include sqlspi.h for ODBC driver development.

This section contains the following topics

See Also

Developing an ODBC Driver
Developing Connection-Pool Awareness in an ODBC Driver
Driver Manager Connection Pooling