Skip to content

Commit 63c145b

Browse files
author
mtx48109
committed
format mfc reference pr4
1 parent fa4d84a commit 63c145b

30 files changed

Lines changed: 5101 additions & 5096 deletions

docs/mfc/reference/cdaoparameterinfo-structure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ struct CDaoParameterInfo
2727
```
2828

2929
#### Parameters
30-
`m_strName`
30+
*m_strName*
3131
Uniquely names the parameter object. For more information, see the topic "Name Property" in DAO Help.
3232

33-
`m_nType`
34-
A value that indicates the data type of a parameter object. For a list of the possible values, see the `m_nType` member of the [CDaoFieldInfo](../../mfc/reference/cdaofieldinfo-structure.md) structure. For more information, see the topic "Type Property" in DAO Help.
33+
*m_nType*
34+
A value that indicates the data type of a parameter object. For a list of the possible values, see the *m_nType* member of the [CDaoFieldInfo](../../mfc/reference/cdaofieldinfo-structure.md) structure. For more information, see the topic "Type Property" in DAO Help.
3535

3636
*m_varValue*
3737
The value of the parameter, stored in a [COleVariant](../../mfc/reference/colevariant-class.md) object.

docs/mfc/reference/cdaoquerydef-class.md

Lines changed: 691 additions & 690 deletions
Large diffs are not rendered by default.

docs/mfc/reference/cdaoquerydefinfo-structure.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ struct CDaoQueryDefInfo
3333
```
3434

3535
#### Parameters
36-
`m_strName`
36+
*m_strName*
3737
Uniquely names the querydef object. For more information, see the topic "Name Property" in DAO Help. Call [CDaoQueryDef::GetName](../../mfc/reference/cdaoquerydef-class.md#getname) to retrieve this property directly.
3838

39-
`m_nType`
39+
*m_nType*
4040
A value that indicates the operational type of a querydef object. The value can be one of the following:
4141

4242
- **dbQSelect** Select — the query selects records.
@@ -66,13 +66,13 @@ struct CDaoQueryDefInfo
6666
6767
For more information, see the topic "Type Property" in DAO Help.
6868

69-
`m_dateCreated`
69+
*m_dateCreated*
7070
The date and time the querydef was created. To directly retrieve the date the querydef was created, call the [GetDateCreated](../../mfc/reference/cdaotabledef-class.md#getdatecreated) member function of the `CDaoTableDef` object associated with the table. See Comments below for more information. Also see the topic "DateCreated, LastUpdated Properties" in DAO Help.
7171

72-
`m_dateLastUpdated`
72+
*m_dateLastUpdated*
7373
The date and time of the most recent change made to the querydef. To directly retrieve the date the table was last updated, call the [GetDateLastUpdated](../../mfc/reference/cdaoquerydef-class.md#getdatelastupdated) member function of the querydef. See Comments below for more information. And see the topic "DateCreated, LastUpdated Properties" in DAO Help.
7474

75-
`m_bUpdatable`
75+
*m_bUpdatable*
7676
Indicates whether changes can be made to a querydef object. If this property is **TRUE**, the querydef is updatable; otherwise, it is not. Updatable means the querydef object's query definition can be changed. The Updatable property of a querydef object is set to **TRUE** if the query definition can be updated, even if the resulting recordset is not updatable. To retrieve this property directly, call the querydef's [CanUpdate](../../mfc/reference/cdaoquerydef-class.md#canupdate) member function. For more information, see the topic "Updatable Property" in DAO Help.
7777

7878
*m_bReturnsRecords*
@@ -81,7 +81,7 @@ struct CDaoQueryDefInfo
8181
*m_strSQL*
8282
The SQL statement that defines the query executed by a querydef object. The SQL property contains the SQL statement that determines how records are selected, grouped, and ordered when you execute the query. You can use the query to select records to include in a dynaset- or snapshot-type recordset object. You can also define bulk queries to modify data without returning records. You can retrieve the value of this property directly by calling the querydef's [GetSQL](../../mfc/reference/cdaoquerydef-class.md#getsql) member function.
8383

84-
`m_strConnect`
84+
*m_strConnect*
8585
Provides information about the source of a database used in a pass-through query. This information takes the form of a connect string. For more information about connect strings, and for information about retrieving the value of this property directly, see the [CDaoDatabase::GetConnect](../../mfc/reference/cdaodatabase-class.md#getconnect) member function.
8686

8787
*m_nODBCTimeout*

docs/mfc/reference/cdaorecordset-class.md

Lines changed: 196 additions & 196 deletions
Large diffs are not rendered by default.

docs/mfc/reference/cdaorecordview-class.md

Lines changed: 193 additions & 192 deletions
Large diffs are not rendered by default.

docs/mfc/reference/cdaorelationfieldinfo-structure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ struct CDaoRelationFieldInfo
2626
```
2727

2828
#### Parameters
29-
`m_strName`
29+
*m_strName*
3030
The name of the field in the primary table of the relation.
3131

32-
`m_strForeignName`
32+
*m_strForeignName*
3333
The name of the field in the foreign table of the relation.
3434

3535
## Remarks

docs/mfc/reference/cdaorelationinfo-structure.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ struct CDaoRelationInfo
3232
```
3333

3434
#### Parameters
35-
`m_strName`
35+
*m_strName*
3636
Uniquely names the relation object. For more information, see the topic "Name Property" in DAO Help.
3737

3838
*m_strTable*
@@ -41,7 +41,7 @@ struct CDaoRelationInfo
4141
*m_strForeignTable*
4242
Names the foreign table in the relation. A foreign table is a table used to contain foreign keys. Generally, you use a foreign table to establish or enforce referential integrity. The foreign table is usually on the many side of a one-to-many relationship. Examples of foreign tables include tables containing codes for the American states or Canadian provinces or customer orders.
4343

44-
`m_lAttributes`
44+
*m_lAttributes*
4545
Contains information about the relation type. The value of this member can be any of the following:
4646

4747
- **dbRelationUnique** Relationship is one-to-one.
@@ -58,11 +58,11 @@ struct CDaoRelationInfo
5858

5959
- **dbRelationDeleteCascade** Deletions will cascade.
6060

61-
`m_pFieldInfos`
62-
A pointer to an array of [CDaoRelationFieldInfo](../../mfc/reference/cdaorelationfieldinfo-structure.md) structures. The array contains one object for each field in the relation. The `m_nFields` data member gives a count of the array elements.
61+
*m_pFieldInfos*
62+
A pointer to an array of [CDaoRelationFieldInfo](../../mfc/reference/cdaorelationfieldinfo-structure.md) structures. The array contains one object for each field in the relation. The *m_nFields* data member gives a count of the array elements.
6363

64-
`m_nFields`
65-
The number of `CDaoRelationFieldInfo` objects in the `m_pFieldInfos` data member.
64+
*m_nFields*
65+
The number of `CDaoRelationFieldInfo` objects in the *m_pFieldInfos* data member.
6666

6767
## Remarks
6868
The references to Primary and Secondary above indicate how the information is returned by the [GetRelationInfo](../../mfc/reference/cdaodatabase-class.md#getrelationinfo) member function in class `CDaoDatabase`.

0 commit comments

Comments
 (0)