Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 1.75 KB

File metadata and controls

32 lines (29 loc) · 1.75 KB
title Data Source Object Interfaces | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-data
ms.topic reference
dev_langs
C++
helpviewer_keywords
data source objects [C++], interfaces
data source objects [C++]
interfaces [C++], OLE DB
interfaces [C++], list of
OLE DB provider templates [C++], object interfaces
OLE DB [C++], interfaces
ms.assetid 929e100c-c08c-4b64-8437-d8d1357226f6
author mikeblome
ms.author mblome
ms.workload
cplusplus
data-storage

Data Source Object Interfaces

The following table shows the mandatory and optional interfaces defined by OLE DB for a data source object.

Interface Required? Implemented by OLE DB templates?
IDBCreateSession Mandatory Yes
IDBInitialize Mandatory Yes
IDBProperties Mandatory Yes
IPersist Mandatory Yes
IConnectionPointContainer Optional No
IDBDataSourceAdmin Optional No
IDBInfo Optional No
IPersistFile Optional No
ISupportErrorInfo Optional No

The data source object implements the IDBProperties, IDBInitialize, and IDBCreateSession interfaces through inheritance. You can choose to support additional functionality by inheriting or not inheriting from one of these implementation classes. If you want to support the IDBDataSourceAdmin interface, you must inherit from the IDBDataSourceAdminImpl class.

See Also

OLE DB Provider Template Architecture