| title | ADOStreamConstruction Interface | Microsoft Docs | |
|---|---|---|
| ms.prod | sql | |
| ms.prod_service | connectivity | |
| ms.technology | connectivity | |
| ms.custom | ||
| ms.date | 01/19/2017 | |
| ms.reviewer | ||
| ms.topic | conceptual | |
| apitype | COM | |
| f1_keywords |
|
|
| helpviewer_keywords |
|
|
| ms.assetid | 92f5a939-3e1a-4b14-a9dd-90e6ce2dec74 | |
| author | MightyPen | |
| ms.author | genemi |
The ADOStreamConstruction interface is used to construct an ADO Stream object from an OLE DB IStream object in a C/C++ application.
| Stream Property | Read/Write. Gets/sets an OLE DB Stream object. |
None.
None.
Given an OLE DB IStream object (pStream), the construction of an ADO Stream object (adoStr) amounts to the following three basic operations:
-
Create an ADO Stream object:
Stream20Ptr adoStr; adoStr.CreateInstance(__uuidof(Stream)); -
Query the IADOStreamConstruction interface on the Stream object:
adoStreamConstructionPtr adoStrConstruct=NULL; adoStr->QueryInterface(__uuidof(ADOStreamConstruction), (void**)&adoStrConstruct);
Call the IADOStreamConstruction::get_Stream property method to set the OLE DB IStream object on the ADO Stream object:
IUnknown *pUnk=NULL;
pRowset->QueryInterface(IID_IUnknown, (void**)&pUnk);
adoStrConstruct->put_Stream(pUnk);
The resultant adoStr object now represents the ADO Stream object constructed from the OLE DB IStream object.
Version: ADO 2.0 or a later version
Library: msado15.dll
UUID: 00000283-0000-0010-8000-00AA006D2EA4