Skip to content

Commit 6948779

Browse files
committed
Links: SQL - ADO - 14
1 parent 4befb5f commit 6948779

50 files changed

Lines changed: 465 additions & 465 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/ado/reference/ado-md-api/value-property-ado-md.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ author: rothja
1919
ms.author: jroth
2020
---
2121
# Value Property (ADO MD)
22-
Indicates the value of the current [cell](../../../ado/reference/ado-md-api/cell-object-ado-md.md).
22+
Indicates the value of the current [cell](./cell-object-ado-md.md).
2323

2424
## Return Values
2525
Returns a **Variant** and is read-only.
2626

2727
## Applies To
28-
[Cell Object (ADO MD)](../../../ado/reference/ado-md-api/cell-object-ado-md.md)
28+
[Cell Object (ADO MD)](./cell-object-ado-md.md)
2929

3030
## See Also
31-
[FormattedValue Property (ADO MD)](../../../ado/reference/ado-md-api/formattedvalue-property-ado-md.md)
31+
[FormattedValue Property (ADO MD)](./formattedvalue-property-ado-md.md)

docs/ado/reference/ado-programmer-s-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ ms.author: jroth
1717
# ADO Programmer's Reference
1818
This section contains the following topics.
1919

20-
- [ADO API Reference](../../ado/reference/ado-api/ado-api-reference.md)
20+
- [ADO API Reference](./ado-api/ado-api-reference.md)
2121

22-
- [RDS API Reference](../../ado/reference/rds-api/rds-api-reference.md)
22+
- [RDS API Reference](./rds-api/rds-api-reference.md)
2323

24-
- [ADO MD API Reference](../../ado/reference/ado-md-api/ado-md-api-reference.md)
24+
- [ADO MD API Reference](./ado-md-api/ado-md-object-model.md?view=sql-server-ver15)
2525

26-
- [ADOX API Reference](../../ado/reference/adox-api/adox-api-reference.md)
26+
- [ADOX API Reference](./adox-api/adox-object-model.md?view=sql-server-ver15)

docs/ado/reference/adox-api/actionenum.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# ActionEnum
21-
Specifies the type of action to be performed when [SetPermissions](../../../ado/reference/adox-api/setpermissions-method-adox.md) is called.
21+
Specifies the type of action to be performed when [SetPermissions](./setpermissions-method-adox.md) is called.
2222

2323
|Constant|Value|Description|
2424
|--------------|-----------|-----------------|
2525
|**adAccessDeny**|3|The group or user will be denied the specified permissions.|
2626
|**adAccessGrant**|1|The group or user will have at least the requested permissions.|
2727
|**adAccessRevoke**|4|Any explicit access rights of the group or user will be revoked.|
28-
|**adAccessSet**|2|The group or user will have exactly the requested permissions.|
28+
|**adAccessSet**|2|The group or user will have exactly the requested permissions.|

docs/ado/reference/adox-api/activeconnection-property-adox.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ author: rothja
2424
ms.author: jroth
2525
---
2626
# ActiveConnection Property (ADOX)
27-
Indicates the ADO [Connection](../../../ado/reference/ado-api/connection-object-ado.md) object to which the [Catalog](../../../ado/reference/adox-api/catalog-object-adox.md) belongs.
27+
Indicates the ADO [Connection](../ado-api/connection-object-ado.md) object to which the [Catalog](./catalog-object-adox.md) belongs.
2828

2929
## Settings and Return Values
3030
Sets a **Connection** object or a **String** containing the definition for a connection. Returns the active **Connection** object.
@@ -33,18 +33,18 @@ Indicates the ADO [Connection](../../../ado/reference/ado-api/connection-object-
3333
The default value is a null object reference.
3434

3535
## Applies To
36-
[Catalog Object (ADOX)](../../../ado/reference/adox-api/catalog-object-adox.md)
36+
[Catalog Object (ADOX)](./catalog-object-adox.md)
3737

3838
## See Also
39-
[Catalog ActiveConnection Property Example (VB)](../../../ado/reference/adox-api/catalog-activeconnection-property-example-vb.md)
40-
[Command and CommandText Properties Example (VB)](../../../ado/reference/adox-api/command-and-commandtext-properties-example-vb.md)
41-
[Connection Close Method, Table Type Property Example (VB)](../../../ado/reference/adox-api/connection-close-method-table-type-property-example-vb.md)
42-
[Parameters Collection, Command Property Example (VB)](../../../ado/reference/adox-api/parameters-collection-command-property-example-vb.md)
43-
[Procedures Append Method Example (VB)](../../../ado/reference/adox-api/procedures-append-method-example-vb.md)
44-
[Procedures Delete Method Example (VB)](../../../ado/reference/adox-api/procedures-delete-method-example-vb.md)
45-
[Procedures Refresh Method Example (VB)](../../../ado/reference/adox-api/procedures-refresh-method-example-vb.md)
46-
[Views and Fields Collections Example (VB)](../../../ado/reference/adox-api/views-and-fields-collections-example-vb.md)
47-
[Views Append Method Example (VB)](../../../ado/reference/adox-api/views-append-method-example-vb.md)
48-
[Views Collection, CommandText Property Example (VB)](../../../ado/reference/adox-api/views-collection-commandtext-property-example-vb.md)
49-
[Views Refresh Method Example (VB)](../../../ado/reference/adox-api/views-refresh-method-example-vb.md)
50-
[Create Method (ADOX)](../../../ado/reference/adox-api/create-method-adox.md)
39+
[Catalog ActiveConnection Property Example (VB)](./catalog-activeconnection-property-example-vb.md)
40+
[Command and CommandText Properties Example (VB)](./command-and-commandtext-properties-example-vb.md)
41+
[Connection Close Method, Table Type Property Example (VB)](./connection-close-method-table-type-property-example-vb.md)
42+
[Parameters Collection, Command Property Example (VB)](./parameters-collection-command-property-example-vb.md)
43+
[Procedures Append Method Example (VB)](./procedures-append-method-example-vb.md)
44+
[Procedures Delete Method Example (VB)](./procedures-delete-method-example-vb.md)
45+
[Procedures Refresh Method Example (VB)](./procedures-refresh-method-example-vb.md)
46+
[Views and Fields Collections Example (VB)](./views-and-fields-collections-example-vb.md)
47+
[Views Append Method Example (VB)](./views-append-method-example-vb.md)
48+
[Views Collection, CommandText Property Example (VB)](./views-collection-commandtext-property-example-vb.md)
49+
[Views Refresh Method Example (VB)](./views-refresh-method-example-vb.md)
50+
[Create Method (ADOX)](./create-method-adox.md)

docs/ado/reference/adox-api/adox-code-example-numericscale-and-precision-properties-example-vb.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# ADOX Code Example: NumericScale and Precision Properties Example (VB)
21-
This example demonstrates the [NumericScale](../../../ado/reference/adox-api/numericscale-property-adox.md) and [Precision](../../../ado/reference/adox-api/precision-property-adox.md) properties of the [Column](../../../ado/reference/adox-api/column-object-adox.md) object. This code displays their value for the **Order Details** table of the *Northwind* database.
21+
This example demonstrates the [NumericScale](./numericscale-property-adox.md) and [Precision](./precision-property-adox.md) properties of the [Column](./column-object-adox.md) object. This code displays their value for the **Order Details** table of the *Northwind* database.
2222

2323
```
2424
' BeginNumericScalePrecVB
@@ -71,6 +71,6 @@ End Sub
7171
```
7272

7373
## See Also
74-
[Column Object (ADOX)](../../../ado/reference/adox-api/column-object-adox.md)
75-
[NumericScale Property (ADOX)](../../../ado/reference/adox-api/numericscale-property-adox.md)
76-
[Precision Property (ADOX)](../../../ado/reference/adox-api/precision-property-adox.md)
74+
[Column Object (ADOX)](./column-object-adox.md)
75+
[NumericScale Property (ADOX)](./numericscale-property-adox.md)
76+
[Precision Property (ADOX)](./precision-property-adox.md)

docs/ado/reference/adox-api/adox-code-examples-in-microsoft-visual-basic.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -24,74 +24,74 @@ These topics provide sample code to help you understand how to use ADOX. All cod
2424
2525
## Methods
2626

27-
- [Columns and Tables Append Methods, Name Property Example (VB)](../../../ado/reference/adox-api/columns-and-tables-append-methods-name-property-example-vb.md)
27+
- [Columns and Tables Append Methods, Name Property Example (VB)](./columns-and-tables-append-methods-name-property-example-vb.md)
2828

29-
- [Connection Close Method, Table Type Property Example (VB)](../../../ado/reference/adox-api/connection-close-method-table-type-property-example-vb.md)
29+
- [Connection Close Method, Table Type Property Example (VB)](./connection-close-method-table-type-property-example-vb.md)
3030

31-
- [Create Method Example (VB)](../../../ado/reference/adox-api/create-method-example-vb.md)
31+
- [Create Method Example (VB)](./create-method-example-vb.md)
3232

33-
- [GetObjectOwner and SetObjectOwner Methods Example (VB)](../../../ado/reference/adox-api/getobjectowner-and-setobjectowner-methods-example-vb.md)
33+
- [GetObjectOwner and SetObjectOwner Methods Example (VB)](./getobjectowner-and-setobjectowner-methods-example-vb.md)
3434

35-
- [GetPermissions and SetPermissions Methods Example (VB)](../../../ado/reference/adox-api/getpermissions-and-setpermissions-methods-example-vb.md)
35+
- [GetPermissions and SetPermissions Methods Example (VB)](./getpermissions-and-setpermissions-methods-example-vb.md)
3636

37-
- [Groups and Users Append, ChangePassword Methods Example (VB)](../../../ado/reference/adox-api/groups-and-users-append-changepassword-methods-example-vb.md)
37+
- [Groups and Users Append, ChangePassword Methods Example (VB)](./groups-and-users-append-changepassword-methods-example-vb.md)
3838

39-
- [Indexes Append Method Example (VB)](../../../ado/reference/adox-api/indexes-append-method-example-vb.md)
39+
- [Indexes Append Method Example (VB)](./indexes-append-method-example-vb.md)
4040

41-
- [Keys Append Method, Key Type, RelatedColumn, RelatedTable, and UpdateRule Properties Example (VB)](../../../ado/reference/adox-api/keys-append-method-key-type-relatedcolumn-relatedtable-example-vb.md)
41+
- [Keys Append Method, Key Type, RelatedColumn, RelatedTable, and UpdateRule Properties Example (VB)](./keys-append-method-key-type-relatedcolumn-relatedtable-example-vb.md)
4242

43-
- [Procedures Append Method Example (VB)](../../../ado/reference/adox-api/procedures-append-method-example-vb.md)
43+
- [Procedures Append Method Example (VB)](./procedures-append-method-example-vb.md)
4444

45-
- [Procedures Delete Method Example (VB)](../../../ado/reference/adox-api/procedures-delete-method-example-vb.md)
45+
- [Procedures Delete Method Example (VB)](./procedures-delete-method-example-vb.md)
4646

47-
- [Procedures Refresh Method Example (VB)](../../../ado/reference/adox-api/procedures-refresh-method-example-vb.md)
47+
- [Procedures Refresh Method Example (VB)](./procedures-refresh-method-example-vb.md)
4848

49-
- [Views Append Method Example (VB)](../../../ado/reference/adox-api/views-append-method-example-vb.md)
49+
- [Views Append Method Example (VB)](./views-append-method-example-vb.md)
5050

51-
- [Views Delete Method Example (VB)](../../../ado/reference/adox-api/views-delete-method-example-vb.md)
51+
- [Views Delete Method Example (VB)](./views-delete-method-example-vb.md)
5252

53-
- [Views Refresh Method Example (VB)](../../../ado/reference/adox-api/views-refresh-method-example-vb.md)
53+
- [Views Refresh Method Example (VB)](./views-refresh-method-example-vb.md)
5454

5555
## Properties
5656

57-
- [Attributes Property Example (VB)](../../../ado/reference/adox-api/attributes-property-example-vb.md)
57+
- [Attributes Property Example (VB)](./attributes-property-example-vb.md)
5858

59-
- [Catalog ActiveConnection Property Example (VB)](../../../ado/reference/adox-api/catalog-activeconnection-property-example-vb.md)
59+
- [Catalog ActiveConnection Property Example (VB)](./catalog-activeconnection-property-example-vb.md)
6060

61-
- [Clustered Property Example (VB)](../../../ado/reference/adox-api/clustered-property-example-vb.md)
61+
- [Clustered Property Example (VB)](./clustered-property-example-vb.md)
6262

63-
- [Command and CommandText Properties Example (VB)](../../../ado/reference/adox-api/command-and-commandtext-properties-example-vb.md)
63+
- [Command and CommandText Properties Example (VB)](./command-and-commandtext-properties-example-vb.md)
6464

65-
- [Command Property, Parameters Collection Example (VB)](../../../ado/reference/adox-api/parameters-collection-command-property-example-vb.md)
65+
- [Command Property, Parameters Collection Example (VB)](./parameters-collection-command-property-example-vb.md)
6666

67-
- [CommandText Property, Views Collection Example (VB)](../../../ado/reference/adox-api/views-collection-commandtext-property-example-vb.md)
67+
- [CommandText Property, Views Collection Example (VB)](./views-collection-commandtext-property-example-vb.md)
6868

69-
- [DateCreated and DateModified Properties Example (VB)](../../../ado/reference/adox-api/datecreated-and-datemodified-properties-example-vb.md)
69+
- [DateCreated and DateModified Properties Example (VB)](./datecreated-and-datemodified-properties-example-vb.md)
7070

71-
- [DefinedSize Property Example (VB)](../../../ado/reference/adox-api/definedsize-property-example-vb.md)
71+
- [DefinedSize Property Example (VB)](./definedsize-property-example-vb.md)
7272

73-
- [DeleteRule Property Example (VB)](../../../ado/reference/adox-api/deleterule-property-example-vb.md)
73+
- [DeleteRule Property Example (VB)](./deleterule-property-example-vb.md)
7474

75-
- [IndexNulls Property Example (VB)](../../../ado/reference/adox-api/indexnulls-property-example-vb.md)
75+
- [IndexNulls Property Example (VB)](./indexnulls-property-example-vb.md)
7676

77-
- [Key Type, RelatedColumn, RelatedTable, and UpdateRule Properties, Keys Append Method Example (VB)](../../../ado/reference/adox-api/keys-append-method-key-type-relatedcolumn-relatedtable-example-vb.md)
77+
- [Key Type, RelatedColumn, RelatedTable, and UpdateRule Properties, Keys Append Method Example (VB)](./keys-append-method-key-type-relatedcolumn-relatedtable-example-vb.md)
7878

79-
- [Name Property, Columns and Tables Append Methods Example (VB)](../../../ado/reference/adox-api/columns-and-tables-append-methods-name-property-example-vb.md)
79+
- [Name Property, Columns and Tables Append Methods Example (VB)](./columns-and-tables-append-methods-name-property-example-vb.md)
8080

81-
- [NumericScale and Precision Properties Example (VB)](../../../ado/reference/adox-api/adox-code-example-numericscale-and-precision-properties-example-vb.md)
81+
- [NumericScale and Precision Properties Example (VB)](./adox-code-example-numericscale-and-precision-properties-example-vb.md)
8282

83-
- [ParentCatalog Property Example (VB)](../../../ado/reference/adox-api/parentcatalog-property-example-vb.md)
83+
- [ParentCatalog Property Example (VB)](./parentcatalog-property-example-vb.md)
8484

85-
- [PrimaryKey and Unique Properties Example (VB)](../../../ado/reference/adox-api/primarykey-and-unique-properties-example-vb.md)
85+
- [PrimaryKey and Unique Properties Example (VB)](./primarykey-and-unique-properties-example-vb.md)
8686

87-
- [SortOrder Property Example (VB)](../../../ado/reference/adox-api/sortorder-property-example-vb.md)
87+
- [SortOrder Property Example (VB)](./sortorder-property-example-vb.md)
8888

89-
- [Table Type Property, Connection Close Method, Example (VB)](../../../ado/reference/adox-api/connection-close-method-table-type-property-example-vb.md)
89+
- [Table Type Property, Connection Close Method, Example (VB)](./connection-close-method-table-type-property-example-vb.md)
9090

9191
## Collections
9292

93-
- [Parameters Collection, Command Property Example (VB)](../../../ado/reference/adox-api/parameters-collection-command-property-example-vb.md)
93+
- [Parameters Collection, Command Property Example (VB)](./parameters-collection-command-property-example-vb.md)
9494

95-
- [Views and Fields Collections Example (VB)](../../../ado/reference/adox-api/views-and-fields-collections-example-vb.md)
95+
- [Views and Fields Collections Example (VB)](./views-and-fields-collections-example-vb.md)
9696

97-
- [Views Collection, CommandText Property Example (VB)](../../../ado/reference/adox-api/views-collection-commandtext-property-example-vb.md)
97+
- [Views Collection, CommandText Property Example (VB)](./views-collection-commandtext-property-example-vb.md)

0 commit comments

Comments
 (0)