Skip to content

Commit 8c309f0

Browse files
author
mtx48109
committed
oledb formatting review pr3
1 parent 0a673a1 commit 8c309f0

30 files changed

Lines changed: 168 additions & 233 deletions

docs/data/oledb/idbcreatesessionimpl-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Creates a new session from the data source object and returns the requested inte
5050
### Syntax
5151
5252
```cpp
53-
STDMETHOD(CreateSession)(IUnknown * pUnkOuter, 
53+
STDMETHOD(CreateSession)(IUnknown * pUnkOuter, 
5454
REFIID riid, 
5555
IUnknown ** ppDBSession);
5656
```
@@ -60,4 +60,4 @@ Creates a new session from the data source object and returns the requested inte
6060

6161
## See Also
6262
[OLE DB Provider Templates](../../data/oledb/ole-db-provider-templates-cpp.md)
63-
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)
63+
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)

docs/data/oledb/idbinitializeimpl-class.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.technology: ["cpp-data"]
66
ms.topic: "reference"
7-
f1_keywords: ["ATL.IDBInitializeImpl<T>", "ATL::IDBInitializeImpl<T>", "IDBInitializeImpl", "ATL::IDBInitializeImpl", "ATL.IDBInitializeImpl", "IDBInitializeImpl.IDBInitializeImpl", "IDBInitializeImpl", "IDBInitializeImpl::IDBInitializeImpl", "Initialize", "IDBInitializeImpl::Initialize", "IDBInitializeImpl.Initialize", "IDBInitializeImpl.Uninitialize", "Uninitialize", "IDBInitializeImpl::Uninitialize", "ATL::IDBInitializeImpl::m_dwStatus", "IDBInitializeImpl.m_dwStatus", "ATL.IDBInitializeImpl.m_dwStatus", "IDBInitializeImpl::m_dwStatus", "IDBInitializeImpl<T>::m_dwStatus", "ATL.IDBInitializeImpl<T>.m_dwStatus", "ATL::IDBInitializeImpl<T>::m_dwStatus", "m_dwStatus", "ATL::IDBInitializeImpl<T>::m_pCUtlPropInfo", "m_pCUtlPropInfo", "IDBInitializeImpl::m_pCUtlPropInfo", "ATL.IDBInitializeImpl.m_pCUtlPropInfo", "IDBInitializeImpl<T>::m_pCUtlPropInfo", "IDBInitializeImpl.m_pCUtlPropInfo", "ATL::IDBInitializeImpl::m_pCUtlPropInfo"]
7+
f1_keywords: ["ATL.IDBInitializeImpl<T>", "ATL::IDBInitializeImpl<T>", "IDBInitializeImpl", "ATL::IDBInitializeImpl", "ATL.IDBInitializeImpl", "IDBInitializeImpl.IDBInitializeImpl", "IDBInitializeImpl", "IDBInitializeImpl::IDBInitializeImpl", "Initialize", "IDBInitializeImpl::Initialize", "IDBInitializeImpl.Initialize", "IDBInitializeImpl.Uninitialize", "Uninitialize", "IDBInitializeImpl::Uninitialize", "ATL::IDBInitializeImpl::m_dwStatus", "IDBInitializeImpl.m_dwStatus", "ATL.IDBInitializeImpl.m_dwStatus", "IDBInitializeImpl::m_dwStatus", "IDBInitializeImpl<T>::m_dwStatus", "ATL.IDBInitializeImpl<T>.m_dwStatus", "ATL::IDBInitializeImpl<T>::m_dwStatus", "m_dwStatus", "ATL::IDBInitializeImpl<T>::m_pCUtlPropInfo", "m_pCUtlPropInfo", "IDBInitializeImpl::m_pCUtlPropInfo", "ATL.IDBInitializeImpl.m_pCUtlPropInfo", "IDBInitializeImpl<T>::m_pCUtlPropInfo", "IDBInitializeImpl.m_pCUtlPropInfo", "ATL::IDBInitializeImpl::m_pCUtlPropInfo"]
88
dev_langs: ["C++"]
99
helpviewer_keywords: ["IDBInitializeImpl class", "IDBInitializeImpl constructor", "Initialize method", "Uninitialize method", "m_dwStatus", "m_pCUtlPropInfo"]
1010
ms.assetid: e4182f81-0443-44f5-a0d3-e7e075d6f883
@@ -61,7 +61,6 @@ The constructor.
6161
6262
```cpp
6363
IDBInitializeImpl();
64-
6564
```
6665

6766
### Remarks
@@ -73,7 +72,7 @@ Initializes the data source object by preparing its property support.
7372
### Syntax
7473

7574
```cpp
76-
STDMETHOD(Initialize)(void);
75+
STDMETHOD(Initialize)(void);
7776
```
7877
7978
### Remarks
@@ -85,7 +84,7 @@ Places the data source object in an uninitialized state by freeing internal reso
8584
### Syntax
8685
8786
```cpp
88-
STDMETHOD(Uninitialize)(void);
87+
STDMETHOD(Uninitialize)(void);
8988
```
9089

9190
### Remarks
@@ -98,13 +97,12 @@ Data source flags.
9897

9998
```cpp
10099
DWORD m_dwStatus;
101-
102100
```
103101

104102
### Remarks
105103
These flags specify or indicate the status of various attributes for the data source object. Contains one or more of the following **enum** values:
106104

107-
```
105+
```cpp
108106
enum DATASOURCE_FLAGS {
109107
DSF_MASK_INIT = 0xFFFFF00F,
110108
DSF_PERSIST_DIRTY = 0x00000001,
@@ -124,12 +122,9 @@ A pointer to implementation object for DB Properties information.
124122
### Syntax
125123

126124
```cpp
127-
CUtlPropInfo<
128-
T
129-
>* m_pCUtlPropInfo;
130-
125+
CUtlPropInfo< T >* m_pCUtlPropInfo;
131126
```
132127

133128
## See Also
134129
[OLE DB Provider Templates](../../data/oledb/ole-db-provider-templates-cpp.md)
135-
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)
130+
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)

docs/data/oledb/idbpropertiesimpl-class.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.technology: ["cpp-data"]
66
ms.topic: "reference"
7-
f1_keywords: ["IDBPropertiesImpl", "ATL.IDBPropertiesImpl", "ATL.IDBPropertiesImpl<T>", "ATL::IDBPropertiesImpl<T>", "ATL::IDBPropertiesImpl", "IDBPropertiesImpl::GetProperties", "IDBPropertiesImpl.GetProperties", "GetProperties", "IDBPropertiesImpl::GetPropertyInfo", "IDBPropertiesImpl.GetPropertyInfo", "GetPropertyInfo", "IDBPropertiesImpl.SetProperties", "SetProperties", "IDBPropertiesImpl::SetProperties"]
7+
f1_keywords: ["IDBPropertiesImpl", "ATL.IDBPropertiesImpl", "ATL.IDBPropertiesImpl<T>", "ATL::IDBPropertiesImpl<T>", "ATL::IDBPropertiesImpl", "IDBPropertiesImpl::GetProperties", "IDBPropertiesImpl.GetProperties", "GetProperties", "IDBPropertiesImpl::GetPropertyInfo", "IDBPropertiesImpl.GetPropertyInfo", "GetPropertyInfo", "IDBPropertiesImpl.SetProperties", "SetProperties", "IDBPropertiesImpl::SetProperties"]
88
dev_langs: ["C++"]
99
helpviewer_keywords: ["IDBPropertiesImpl class", "GetProperties method", "GetPropertyInfo method", "SetProperties method"]
1010
ms.assetid: a7f15a8b-95b2-4316-b944-d5d03f8d74ab
@@ -49,7 +49,7 @@ Returns the values of properties in the Data Source, Data Source Information, an
4949
### Syntax
5050
5151
```cpp
52-
STDMETHOD(GetProperties)(ULONG cPropertySets, 
52+
STDMETHOD(GetProperties)(ULONG cPropertySets, 
5353
const DBPROPIDSET rgPropertySets[], 
5454
ULONG * pcProperties, 
5555
DBPROPSET ** prgProperties);
@@ -76,7 +76,7 @@ Returns property information supported by the data source.
7676
### Syntax
7777

7878
```cpp
79-
STDMETHOD(GetPropertyInfo)(ULONG cPropertySets, 
79+
STDMETHOD(GetPropertyInfo)(ULONG cPropertySets, 
8080
const DBPROPIDSET rgPropertySets[]
8181
ULONG * pcPropertyInfoSets, 
8282
DBPROPINFOSET ** prgPropertyInfoSets, 
@@ -102,7 +102,7 @@ Sets properties in the Data Source and Initialization property groups, for data
102102
### Syntax
103103
104104
```cpp
105-
STDMETHOD(SetProperties)(ULONG cPropertySets, 
105+
STDMETHOD(SetProperties)(ULONG cPropertySets, 
106106
DBPROPSET rgPropertySets[]);
107107
```
108108

@@ -114,4 +114,4 @@ Sets properties in the Data Source and Initialization property groups, for data
114114

115115
## See Also
116116
[OLE DB Provider Templates](../../data/oledb/ole-db-provider-templates-cpp.md)
117-
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)
117+
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)

docs/data/oledb/idbschemarowsetimpl-class.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.technology: ["cpp-data"]
66
ms.topic: "reference"
7-
f1_keywords: ["IDBSchemaRowsetImpl", "CheckRestrictions", "IDBSchemaRowsetImpl::CheckRestrictions", "IDBSchemaRowsetImpl.CheckRestrictions", "IDBSchemaRowsetImpl::CreateSchemaRowset", "ATL::IDBSchemaRowsetImpl::CreateSchemaRowset", "CreateSchemaRowset", "IDBSchemaRowsetImpl.CreateSchemaRowset", "ATL.IDBSchemaRowsetImpl.CreateSchemaRowset", "IDBSchemaRowsetImpl::SetRestrictions", "SetRestrictions", "IDBSchemaRowsetImpl.SetRestrictions", "ATL::IDBSchemaRowsetImpl::GetRowset", "ATL.IDBSchemaRowsetImpl.GetRowset", "IDBSchemaRowsetImpl<SessionClass>::GetRowset", "IDBSchemaRowsetImpl.GetRowset", "IDBSchemaRowsetImpl::GetRowset", "ATL::IDBSchemaRowsetImpl<SessionClass>::GetRowset", "GetRowset", "ATL::IDBSchemaRowsetImpl::GetSchemas", "GetSchemas", "IDBSchemaRowsetImpl<SessionClass>::GetSchemas", "ATL.IDBSchemaRowsetImpl.GetSchemas", "ATL::IDBSchemaRowsetImpl<SessionClass>::GetSchemas", "IDBSchemaRowsetImpl.GetSchemas", "IDBSchemaRowsetImpl::GetSchemas"]
7+
f1_keywords: ["IDBSchemaRowsetImpl", "CheckRestrictions", "IDBSchemaRowsetImpl::CheckRestrictions", "IDBSchemaRowsetImpl.CheckRestrictions", "IDBSchemaRowsetImpl::CreateSchemaRowset", "ATL::IDBSchemaRowsetImpl::CreateSchemaRowset", "CreateSchemaRowset", "IDBSchemaRowsetImpl.CreateSchemaRowset", "ATL.IDBSchemaRowsetImpl.CreateSchemaRowset", "IDBSchemaRowsetImpl::SetRestrictions", "SetRestrictions", "IDBSchemaRowsetImpl.SetRestrictions", "ATL::IDBSchemaRowsetImpl::GetRowset", "ATL.IDBSchemaRowsetImpl.GetRowset", "IDBSchemaRowsetImpl<SessionClass>::GetRowset", "IDBSchemaRowsetImpl.GetRowset", "IDBSchemaRowsetImpl::GetRowset", "ATL::IDBSchemaRowsetImpl<SessionClass>::GetRowset", "GetRowset", "ATL::IDBSchemaRowsetImpl::GetSchemas", "GetSchemas", "IDBSchemaRowsetImpl<SessionClass>::GetSchemas", "ATL.IDBSchemaRowsetImpl.GetSchemas", "ATL::IDBSchemaRowsetImpl<SessionClass>::GetSchemas", "IDBSchemaRowsetImpl.GetSchemas", "IDBSchemaRowsetImpl::GetSchemas"]
88
dev_langs: ["C++"]
99
helpviewer_keywords: ["IDBSchemaRowsetImpl class", "CheckRestrictions method", "CreateSchemaRowset method", "SetRestrictions method", "GetRowset method", "GetSchemas method"]
1010
ms.assetid: bd7bf0d7-a1c6-4afa-88e3-cfdbdf560703
@@ -139,7 +139,7 @@ Specifies which restrictions you support on a particular schema rowset.
139139
140140
```cpp
141141
void SetRestrictions(ULONG cRestrictions,
142-
GUID* /* rguidSchema */,
142+
GUID* /* rguidSchema */,
143143
ULONG* rgRestrictions);
144144
```
145145

@@ -170,7 +170,7 @@ Returns a schema rowset.
170170
### Syntax
171171

172172
```cpp
173-
STDMETHOD (GetRowset)(IUnknown *pUnkOuter,
173+
STDMETHOD (GetRowset)(IUnknown *pUnkOuter,
174174
REFGUID rguidSchema,
175175
ULONG cRestrictions,
176176
const VARIANT rgRestrictions[],
@@ -216,7 +216,7 @@ Returns a list of schema rowsets accessible by [IDBSchemaRowsetImpl::GetRowset](
216216
### Syntax
217217
218218
```cpp
219-
STDMETHOD (GetSchema s )(ULONG * pcSchemas,
219+
STDMETHOD (GetSchema s )(ULONG * pcSchemas,
220220
GUID ** prgSchemas,
221221
ULONG** prgRest);
222222
```
@@ -241,4 +241,4 @@ Returns a list of schema rowsets accessible by [IDBSchemaRowsetImpl::GetRowset](
241241
[Schema Rowset Classes and Typedef Classes](../../data/oledb/schema-rowset-classes-and-typedef-classes.md)
242242
[Supporting Schema Rowsets](../../data/oledb/supporting-schema-rowsets.md)
243243
[SCHEMA_ENTRY](../../data/oledb/schema-entry.md)
244-
[UpdatePV](../../visual-cpp-samples.md)
244+
[UpdatePV](../../visual-cpp-samples.md)

docs/data/oledb/ierrorrecordsimpl-class.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.technology: ["cpp-data"]
66
ms.topic: "reference"
7-
f1_keywords: ["ATL::IErrorRecordsImpl", "ATL.IErrorRecordsImpl", "IErrorRecordsImpl", "GetErrorDescriptionString", "IErrorRecordsImpl.GetErrorDescriptionString", "IErrorRecordsImpl::GetErrorDescriptionString", "GetErrorGUID", "IErrorRecordsImpl.GetErrorGUID", "IErrorRecordsImpl::GetErrorGUID", "GetErrorHelpContext", "IErrorRecordsImpl::GetErrorHelpContext", "IErrorRecordsImpl.GetErrorHelpContext", "IErrorRecordsImpl::GetErrorHelpFile", "GetErrorHelpFile", "IErrorRecordsImpl.GetErrorHelpFile", "IErrorRecordsImpl.GetErrorSource", "GetErrorSource", "IErrorRecordsImpl::GetErrorSource", "IErrorRecordsImpl.AddErrorRecord", "AddErrorRecord", "IErrorRecordsImpl::AddErrorRecord", "ATL::IErrorRecordsImpl::GetBasicErrorInfo", "IErrorRecordsImpl::GetBasicErrorInfo", "GetBasicErrorInfo", "ATL.IErrorRecordsImpl.GetBasicErrorInfo", "IErrorRecordsImpl.GetBasicErrorInfo", "ATL::IErrorRecordsImpl::GetCustomErrorObject", "IErrorRecordsImpl::GetCustomErrorObject", "ATL.IErrorRecordsImpl.GetCustomErrorObject", "IErrorRecordsImpl.GetCustomErrorObject", "GetCustomErrorObject", "GetErrorInfo", "IErrorRecordsImpl.GetErrorInfo", "IErrorRecordsImpl::GetErrorInfo", "IErrorRecordsImpl::GetErrorParameters", "ATL.IErrorRecordsImpl.GetErrorParameters", "IErrorRecordsImpl.GetErrorParameters", "GetErrorParameters", "ATL::IErrorRecordsImpl::GetErrorParameters", "IErrorRecordsImpl::GetRecordCount", "ATL::IErrorRecordsImpl::GetRecordCount", "IErrorRecordsImpl.GetRecordCount", "ATL.IErrorRecordsImpl.GetRecordCount", "IErrorRecordsImpl::m_rgErrors", "IErrorRecordsImpl.m_rgErrors", "ATL.IErrorRecordsImpl.m_rgErrors", "m_rgErrors", "ATL::IErrorRecordsImpl::m_rgErrors"]
7+
f1_keywords: ["ATL::IErrorRecordsImpl", "ATL.IErrorRecordsImpl", "IErrorRecordsImpl", "GetErrorDescriptionString", "IErrorRecordsImpl.GetErrorDescriptionString", "IErrorRecordsImpl::GetErrorDescriptionString", "GetErrorGUID", "IErrorRecordsImpl.GetErrorGUID", "IErrorRecordsImpl::GetErrorGUID", "GetErrorHelpContext", "IErrorRecordsImpl::GetErrorHelpContext", "IErrorRecordsImpl.GetErrorHelpContext", "IErrorRecordsImpl::GetErrorHelpFile", "GetErrorHelpFile", "IErrorRecordsImpl.GetErrorHelpFile", "IErrorRecordsImpl.GetErrorSource", "GetErrorSource", "IErrorRecordsImpl::GetErrorSource", "IErrorRecordsImpl.AddErrorRecord", "AddErrorRecord", "IErrorRecordsImpl::AddErrorRecord", "ATL::IErrorRecordsImpl::GetBasicErrorInfo", "IErrorRecordsImpl::GetBasicErrorInfo", "GetBasicErrorInfo", "ATL.IErrorRecordsImpl.GetBasicErrorInfo", "IErrorRecordsImpl.GetBasicErrorInfo", "ATL::IErrorRecordsImpl::GetCustomErrorObject", "IErrorRecordsImpl::GetCustomErrorObject", "ATL.IErrorRecordsImpl.GetCustomErrorObject", "IErrorRecordsImpl.GetCustomErrorObject", "GetCustomErrorObject", "GetErrorInfo", "IErrorRecordsImpl.GetErrorInfo", "IErrorRecordsImpl::GetErrorInfo", "IErrorRecordsImpl::GetErrorParameters", "ATL.IErrorRecordsImpl.GetErrorParameters", "IErrorRecordsImpl.GetErrorParameters", "GetErrorParameters", "ATL::IErrorRecordsImpl::GetErrorParameters", "IErrorRecordsImpl::GetRecordCount", "ATL::IErrorRecordsImpl::GetRecordCount", "IErrorRecordsImpl.GetRecordCount", "ATL.IErrorRecordsImpl.GetRecordCount", "IErrorRecordsImpl::m_rgErrors", "IErrorRecordsImpl.m_rgErrors", "ATL.IErrorRecordsImpl.m_rgErrors", "m_rgErrors", "ATL::IErrorRecordsImpl::m_rgErrors"]
88
dev_langs: ["C++"]
9-
helpviewer_keywords: ["IErrorRecordsImpl class", "GetErrorDescriptionString method", "GetErrorGUID method", "GetErrorHelpContext method", "GetErrorHelpFile method", "GetErrorSource method", "AddErrorRecord method", "GetBasicErrorInfo method", "GetCustomErrorObject method", "GetErrorInfo method", "GetErrorParameters method", "GetRecordCount method", "m_rgErrors"]
9+
helpviewer_keywords: ["IErrorRecordsImpl class", "GetErrorDescriptionString method", "GetErrorGUID method", "GetErrorHelpContext method", "GetErrorHelpFile method", "GetErrorSource method", "AddErrorRecord method", "GetBasicErrorInfo method", "GetCustomErrorObject method", "GetErrorInfo method", "GetErrorParameters method", "GetRecordCount method", "m_rgErrors"]
1010
ms.assetid: dea8e938-c5d8-45ab-86de-eb8fbf534ffb
1111
author: "mikeblome"
1212
ms.author: "mblome"
@@ -67,7 +67,7 @@ Gets the error description string from an error record.
6767
### Syntax
6868
6969
```cpp
70-
LPOLESTR GetErrorDescriptionString(ERRORINFO& rCurError);
70+
LPOLESTR GetErrorDescriptionString(ERRORINFO& rCurError);
7171
```
7272

7373
#### Parameters
@@ -83,7 +83,7 @@ Gets the error GUID from an error record.
8383
### Syntax
8484

8585
```cpp
86-
REFGUID GetErrorGUID(ERRORINFO& rCurError);
86+
REFGUID GetErrorGUID(ERRORINFO& rCurError);
8787
```
8888
8989
#### Parameters
@@ -99,7 +99,7 @@ Gets the help context ID from an error record.
9999
### Syntax
100100
101101
```cpp
102-
DWORD GetErrorHelpContext(ERRORINFO& rCurError);
102+
DWORD GetErrorHelpContext(ERRORINFO& rCurError);
103103
```
104104

105105
#### Parameters
@@ -115,7 +115,7 @@ Gets the path name of the help file from an error record.
115115
### Syntax
116116

117117
```cpp
118-
LPOLESTR GetErrorHelpFile(ERRORINFO& rCurError);
118+
LPOLESTR GetErrorHelpFile(ERRORINFO& rCurError);
119119
```
120120
121121
#### Parameters
@@ -131,7 +131,7 @@ Gets the source code that caused the error from an error record.
131131
### Syntax
132132
133133
```cpp
134-
LPOLESTR GetErrorSource(ERRORINFO& rCurError);
134+
LPOLESTR GetErrorSource(ERRORINFO& rCurError);
135135
```
136136

137137
#### Parameters
@@ -147,7 +147,7 @@ Adds a record to the OLE DB error object.
147147
### Syntax
148148

149149
```cpp
150-
STDMETHOD(AddErrorRecord )(ERRORINFO *pErrorInfo,
150+
STDMETHOD(AddErrorRecord )(ERRORINFO *pErrorInfo,
151151
DWORD dwLookupID,
152152
DISPPARAMS *pdispparams,
153153
IUnknown *punkCustomError,
@@ -163,7 +163,7 @@ Returns basic information about the error, such as the return code and provider-
163163
### Syntax
164164
165165
```cpp
166-
STDMETHOD(GetBasicErrorInfo )(ULONG ulRecordNum,
166+
STDMETHOD(GetBasicErrorInfo )(ULONG ulRecordNum,
167167
ERRORINFO *pErrorInfo);
168168
```
169169

@@ -176,7 +176,7 @@ Returns a pointer to an interface on a custom error object.
176176
### Syntax
177177

178178
```cpp
179-
STDMETHOD(GetCustomErrorObject )(ULONG ulRecordNum,
179+
STDMETHOD(GetCustomErrorObject )(ULONG ulRecordNum,
180180
REFIID riid,
181181
IUnknown **ppObject);
182182
```
@@ -190,7 +190,7 @@ Returns an [IErrorInfo](https://msdn.microsoft.com/library/ms718112.aspx) interf
190190
### Syntax
191191
192192
```cpp
193-
STDMETHOD(GetErrorInfo )(ULONG ulRecordNum,
193+
STDMETHOD(GetErrorInfo )(ULONG ulRecordNum,
194194
LCID lcid,
195195
IErrorInfo **ppErrorInfo);
196196
```
@@ -204,7 +204,7 @@ Returns the error parameters.
204204
### Syntax
205205

206206
```cpp
207-
STDMETHOD(GetErrorParameters )(ULONG ulRecordNum,
207+
STDMETHOD(GetErrorParameters )(ULONG ulRecordNum,
208208
DISPPARAMS *pdispparams);
209209
```
210210
@@ -217,7 +217,7 @@ Returns the number of records in the OLE DB record object.
217217
### Syntax
218218
219219
```cpp
220-
STDMETHOD(GetRecordCount )(ULONG *pcRecords);
220+
STDMETHOD(GetRecordCount )(ULONG *pcRecords);
221221
```
222222

223223
#### Parameters
@@ -229,12 +229,9 @@ An array of error records.
229229
### Syntax
230230

231231
```cpp
232-
CAtlArray<
233-
RecordClass
234-
> m_rgErrors;
235-
232+
CAtlArray< RecordClass > m_rgErrors;
236233
```
237234

238235
## See Also
239236
[OLE DB Provider Templates](../../data/oledb/ole-db-provider-templates-cpp.md)
240-
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)
237+
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)

docs/data/oledb/igetdatasourceimpl-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.technology: ["cpp-data"]
66
ms.topic: "reference"
7-
f1_keywords: ["IGetDataSourceImpl", "ATL.IGetDataSourceImpl<T>", "ATL.IGetDataSourceImpl", "ATL::IGetDataSourceImpl", "ATL::IGetDataSourceImpl<T>", "GetDataSource", "IGetDataSourceImpl.GetDataSource", "IGetDataSourceImpl::GetDataSource"]
7+
f1_keywords: ["IGetDataSourceImpl", "ATL.IGetDataSourceImpl<T>", "ATL.IGetDataSourceImpl", "ATL::IGetDataSourceImpl", "ATL::IGetDataSourceImpl<T>", "GetDataSource", "IGetDataSourceImpl.GetDataSource", "IGetDataSourceImpl::GetDataSource"]
88
dev_langs: ["C++"]
99
helpviewer_keywords: ["IGetDataSourceImpl class", "GetDataSource method"]
1010
ms.assetid: d63f3178-d663-4f01-8c09-8aab2dd6805a
@@ -46,7 +46,7 @@ Returns an interface pointer on the data source object that created the session.
4646
### Syntax
4747
4848
```cpp
49-
STDMETHOD(GetDataSource)(REFIID riid, 
49+
STDMETHOD(GetDataSource)(REFIID riid, 
5050
IUnknown ** ppDataSource);
5151
```
5252

@@ -58,4 +58,4 @@ Returns an interface pointer on the data source object that created the session.
5858

5959
## See Also
6060
[OLE DB Provider Templates](../../data/oledb/ole-db-provider-templates-cpp.md)
61-
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)
61+
[OLE DB Provider Template Architecture](../../data/oledb/ole-db-provider-template-architecture.md)

0 commit comments

Comments
 (0)