Skip to content

Commit cbaaf15

Browse files
author
mtx48109
committed
minor fix
1 parent 6ba5db3 commit cbaaf15

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/data/oledb/crowset-class.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class CRowset
8383
|[SetData](#setdata)|Sets data values in one or more columns of a row using [IRowsetChange:SetData](https://msdn.microsoft.com/library/ms721232.aspx).|
8484
|[Undo](#undo)|Undoes any changes made to a row since the last fetch or [Update](../../data/oledb/crowset-update.md).|
8585
|[Update](#update)|Transmits any pending changes made to the current row since the last fetch or update.|
86-
|[UpdateAll](#udpateall)|Transmits any pending changes made to all rows since the last fetch or update.|
86+
|[UpdateAll](#updateall)|Transmits any pending changes made to all rows since the last fetch or update.|
8787
8888
## Remarks
8989
In OLE DB, a rowset is the object through which a program sets and retrieves data.
@@ -443,9 +443,9 @@ HRESULT MoveNext() throw();HRESULT MoveNext(LONG lSkip, 
443443
444444
This method requires that you set the following properties before calling `Open` on the table or command containing the rowset:
445445
446-
- DBPROP_CANSCROLLBACKWARDS must be VARIANT_TRUE if *lSkip* < 0
446+
- `DBPROP_CANSCROLLBACKWARDS` must be VARIANT_TRUE if *lSkip* < 0
447447
448-
- DBPROP_CANFETCHBACKWARDS must be VARIANT_TRUE if *bForward* = false
448+
- `DBPROP_CANFETCHBACKWARDS` must be VARIANT_TRUE if *bForward* = false
449449
450450
Otherwise (if *lSkip* >= 0 and *bForward* = true), you do not need to set any additional properties.
451451

0 commit comments

Comments
 (0)