Skip to content

Commit eb1c316

Browse files
author
v-makouz
authored
Some corrections
1 parent 04fbbcc commit eb1c316

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/connect/odbc/data-classification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ If Data Classification information is not available, an *Invalid Descriptor Fiel
6363

6464
Upon successful call to SQLGetDescField the *ValuePtr* will contain the following data:
6565

66-
`nn nn [n *sensitivitylabels*] tt tt [t *informationtype*s] cc cc [c *columnsensitivitys*]`
66+
`nn nn [n sensitivitylabels] tt tt [t informationtypes] cc cc [c columnsensitivitys]`
6767

6868
*sensitivitylabel* and *informationtype* are both of the form
6969

7070
`nn [n bytes name] ii [i bytes id]`
7171

7272
*columnsensitivity* is of the form
7373

74-
`nn nn [n *sensitivityprops*]`
74+
`nn nn [n sensitivityprops]`
7575

7676
For each column (c), n 4-byte 7 *sensitivityprops* are present:
7777

@@ -85,9 +85,9 @@ Data can expressed using the following structs:
8585
```
8686
struct IDnamePair {
8787
BYTE nameLen;
88-
BYTE name[nameLen];
88+
USHORT name[nameLen];
8989
BYTE idLen;
90-
BYTE id[idLen];
90+
USHORT id[idLen];
9191
};
9292
9393
struct SensitivityProp {

0 commit comments

Comments
 (0)