Skip to content

Commit de3aff5

Browse files
authored
Merge pull request #16699 from DCtheGeek/dmc-links-sql-ado-10
Links: SQL - ADO - 10
2 parents dd0234a + a068b3c commit de3aff5

50 files changed

Lines changed: 326 additions & 326 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-api/parenturl-property-ado.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# ParentURL Property (ADO)
21-
Indicates an absolute URL string that points to the parent [Record](../../../ado/reference/ado-api/record-object-ado.md) of the current **Record** object.
21+
Indicates an absolute URL string that points to the parent [Record](./record-object-ado.md) of the current **Record** object.
2222

2323
## Return Value
2424
Returns a **String** value that indicates the URL of the parent **Record**.
2525

2626
## Remarks
27-
The **ParentURL** property depends on the source used to open the **Record** object. For example, the **Record** can be opened with a source that contains a relative path name of a directory referenced by the [ActiveConnection](../../../ado/reference/ado-api/activeconnection-property-ado.md) property.
27+
The **ParentURL** property depends on the source used to open the **Record** object. For example, the **Record** can be opened with a source that contains a relative path name of a directory referenced by the [ActiveConnection](./activeconnection-property-ado.md) property.
2828

2929
Suppose "second" is a folder contained under "first". Open the **Record** object by using the following syntax:
3030

@@ -46,13 +46,13 @@ record.Open "second"
4646
This property is read-only.
4747

4848
> [!NOTE]
49-
> This property is only supported by document source providers, such as the [Microsoft OLE DB Provider for Internet Publishing](../../../ado/guide/appendixes/microsoft-ole-db-provider-for-internet-publishing.md). For more information, see [Records and Provider-Supplied Fields](../../../ado/guide/data/records-and-provider-supplied-fields.md).
49+
> This property is only supported by document source providers, such as the [Microsoft OLE DB Provider for Internet Publishing](../../guide/appendixes/microsoft-ole-db-provider-for-internet-publishing.md). For more information, see [Records and Provider-Supplied Fields](../../guide/data/records-and-provider-supplied-fields.md).
5050
5151
> [!NOTE]
52-
> URLs using the http scheme will automatically invoke the [Microsoft OLE DB Provider for Internet Publishing](../../../ado/guide/appendixes/microsoft-ole-db-provider-for-internet-publishing.md). For more information, see [Absolute and Relative URLs](../../../ado/guide/data/absolute-and-relative-urls.md).
52+
> URLs using the http scheme will automatically invoke the [Microsoft OLE DB Provider for Internet Publishing](../../guide/appendixes/microsoft-ole-db-provider-for-internet-publishing.md). For more information, see [Absolute and Relative URLs](../../guide/data/absolute-and-relative-urls.md).
5353
5454
> [!NOTE]
5555
> If the current record contains a data record from an ADO **Recordset**, accessing the **ParentURL** property causes a run-time error, indicating that no URL is possible.
5656
5757
## Applies To
58-
[Record Object (ADO)](../../../ado/reference/ado-api/record-object-ado.md)
58+
[Record Object (ADO)](./record-object-ado.md)

docs/ado/reference/ado-api/persistformatenum.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# PersistFormatEnum
21-
Specifies the format in which to save a [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md).
21+
Specifies the format in which to save a [Recordset](./recordset-object-ado.md).
2222

2323
|Constant|Value|Description|
2424
|--------------|-----------|-----------------|
@@ -36,4 +36,4 @@ Specifies the format in which to save a [Recordset](../../../ado/reference/ado-a
3636
|AdoEnums.PersistFormat.XML|
3737

3838
## Applies To
39-
[Save Method](../../../ado/reference/ado-api/save-method.md)
39+
[Save Method](./save-method.md)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# Position Property (ADO)
21-
Indicates the current position within a [Stream](../../../ado/reference/ado-api/stream-object-ado.md) object.
21+
Indicates the current position within a [Stream](./stream-object-ado.md) object.
2222

2323
## Settings and Return Values
2424
Sets or returns a **Long** value that specifies the offset, in number of bytes, of the current position from the beginning of the stream. The default is 0, which represents the first byte in the stream.
2525

2626
## Remarks
27-
The current position can be moved to a point after the end of the stream. If you specify the current position beyond the end of the stream, the [Size](../../../ado/reference/ado-api/size-property-ado-stream.md) of the **Stream** object will be increased accordingly. Any new bytes added in this way will be null.
27+
The current position can be moved to a point after the end of the stream. If you specify the current position beyond the end of the stream, the [Size](./size-property-ado-stream.md) of the **Stream** object will be increased accordingly. Any new bytes added in this way will be null.
2828

2929
> [!NOTE]
3030
> **Position** always measures bytes. For text streams using multibyte character sets, multiply the position by the character size to determine the character number. For example, for a two-byte character set, the first character is at position 0, the second character at position 2, the third character at position 4, and so on.
@@ -36,7 +36,7 @@ Indicates the current position within a [Stream](../../../ado/reference/ado-api/
3636
> For read-only **Stream** objects, ADO will not return an error if **Position** is set to a value greater than the **Size** of the **Stream**. This does not change the size of the **Stream**, or alter the **Stream** contents in any way. However, doing this should be avoided because it results in a meaningless **Position**value.
3737
3838
## Applies To
39-
[Stream Object (ADO)](../../../ado/reference/ado-api/stream-object-ado.md)
39+
[Stream Object (ADO)](./stream-object-ado.md)
4040

4141
## See Also
42-
[Charset Property (ADO)](../../../ado/reference/ado-api/charset-property-ado.md)
42+
[Charset Property (ADO)](./charset-property-ado.md)

docs/ado/reference/ado-api/positionenum.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# PositionEnum
21-
Specifies the current position of the record pointer within a [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md).
21+
Specifies the current position of the record pointer within a [Recordset](./recordset-object-ado.md).
2222

2323
|Constant|Value|Description|
2424
|--------------|-----------|-----------------|
25-
|**adPosBOF**|-2|Indicates that the current record pointer is at BOF (that is, the [BOF](../../../ado/reference/ado-api/bof-eof-properties-ado.md) property is **True**).|
26-
|**adPosEOF**|-3|Indicates that the current record pointer is at EOF (that is, the [EOF](../../../ado/reference/ado-api/bof-eof-properties-ado.md) property is **True**).|
27-
|**adPosUnknown**|-1|Indicates that the **Recordset** is empty, the current position is unknown, or the provider does not support the [AbsolutePage](../../../ado/reference/ado-api/absolutepage-property-ado.md) or [AbsolutePosition](../../../ado/reference/ado-api/absoluteposition-property-ado.md) property.|
25+
|**adPosBOF**|-2|Indicates that the current record pointer is at BOF (that is, the [BOF](./bof-eof-properties-ado.md) property is **True**).|
26+
|**adPosEOF**|-3|Indicates that the current record pointer is at EOF (that is, the [EOF](./bof-eof-properties-ado.md) property is **True**).|
27+
|**adPosUnknown**|-1|Indicates that the **Recordset** is empty, the current position is unknown, or the provider does not support the [AbsolutePage](./absolutepage-property-ado.md) or [AbsolutePosition](./absoluteposition-property-ado.md) property.|
2828

2929
## ADO/WFC Equivalent
3030
Package: **com.ms.wfc.data**
@@ -39,9 +39,9 @@ Specifies the current position of the record pointer within a [Recordset](../../
3939

4040
:::row:::
4141
:::column:::
42-
[AbsolutePage Property (ADO)](../../../ado/reference/ado-api/absolutepage-property-ado.md)
42+
[AbsolutePage Property (ADO)](./absolutepage-property-ado.md)
4343
:::column-end:::
4444
:::column:::
45-
[AbsolutePosition Property (ADO)](../../../ado/reference/ado-api/absoluteposition-property-ado.md)
45+
[AbsolutePosition Property (ADO)](./absoluteposition-property-ado.md)
4646
:::column-end:::
47-
:::row-end:::
47+
:::row-end:::

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ author: rothja
1919
ms.author: jroth
2020
---
2121
# Precision Property (ADO)
22-
Indicates the degree of precision for numeric values in a [Parameter](../../../ado/reference/ado-api/parameter-object.md) object or for numeric [Field](../../../ado/reference/ado-api/field-object.md) objects.
22+
Indicates the degree of precision for numeric values in a [Parameter](./parameter-object.md) object or for numeric [Field](./field-object.md) objects.
2323

2424
## Settings and Return Values
2525
Sets or returns a **Byte** value that indicates the maximum number of digits used to represent values.
@@ -29,20 +29,20 @@ Indicates the degree of precision for numeric values in a [Parameter](../../../a
2929

3030
The value is read/write on a **Parameter** object.
3131

32-
For a **Field**object, **Precision** is normally read-only. However, for new **Field** objects that have been appended to the [Fields](../../../ado/reference/ado-api/fields-collection-ado.md) collection of a [Record](../../../ado/reference/ado-api/record-object-ado.md), **Precision** is read/write only after the [Value](../../../ado/reference/ado-api/value-property-ado.md) property for the **Field** has been specified and the data provider has successfully added the new **Field** by calling the [Update](../../../ado/reference/ado-api/update-method.md) method of the **Fields** collection.
32+
For a **Field**object, **Precision** is normally read-only. However, for new **Field** objects that have been appended to the [Fields](./fields-collection-ado.md) collection of a [Record](./record-object-ado.md), **Precision** is read/write only after the [Value](./value-property-ado.md) property for the **Field** has been specified and the data provider has successfully added the new **Field** by calling the [Update](./update-method.md) method of the **Fields** collection.
3333

3434
## Applies To
3535

3636
:::row:::
3737
:::column:::
38-
[Field Object](../../../ado/reference/ado-api/field-object.md)
38+
[Field Object](./field-object.md)
3939
:::column-end:::
4040
:::column:::
41-
[Parameter Object](../../../ado/reference/ado-api/parameter-object.md)
41+
[Parameter Object](./parameter-object.md)
4242
:::column-end:::
4343
:::row-end:::
4444

4545
## See Also
46-
[NumericScale and Precision Properties Example (VB)](../../../ado/reference/ado-api/numericscale-and-precision-properties-example-vb.md)
47-
[NumericScale and Precision Properties Example (VC++)](../../../ado/reference/ado-api/numericscale-and-precision-properties-example-vc.md)
48-
[NumericScale Property (ADO)](../../../ado/reference/ado-api/numericscale-property-ado.md)
46+
[NumericScale and Precision Properties Example (VB)](./numericscale-and-precision-properties-example-vb.md)
47+
[NumericScale and Precision Properties Example (VC++)](./numericscale-and-precision-properties-example-vc.md)
48+
[NumericScale Property (ADO)](./numericscale-property-ado.md)

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ author: rothja
1818
ms.author: jroth
1919
---
2020
# Prepared Property (ADO)
21-
Indicates whether to save a compiled version of a [Command](../../../ado/reference/ado-api/command-object-ado.md) before execution.
21+
Indicates whether to save a compiled version of a [Command](./command-object-ado.md) before execution.
2222

2323
## Settings and Return Values
2424
Sets or returns a **Boolean** value that, if set to **True**, indicates that the command should be prepared.
2525

2626
## Remarks
27-
Use the **Prepared** property to have the provider save a prepared (or compiled) version of the query specified in the [CommandText](../../../ado/reference/ado-api/commandtext-property-ado.md) property before a [Command](../../../ado/reference/ado-api/command-object-ado.md) object's first execution. This may slow a command's first execution, but once the provider compiles a command, the provider will use the compiled version of the command for any subsequent executions, which will result in improved performance.
27+
Use the **Prepared** property to have the provider save a prepared (or compiled) version of the query specified in the [CommandText](./commandtext-property-ado.md) property before a [Command](./command-object-ado.md) object's first execution. This may slow a command's first execution, but once the provider compiles a command, the provider will use the compiled version of the command for any subsequent executions, which will result in improved performance.
2828

2929
If the property is **False**, the provider will execute the **Command** object directly without creating a compiled version.
3030

3131
If the provider does not support command preparation, it may return an error when this property is set to **True**. If the provider does not return an error, it simply ignores the request to prepare the command and sets the **Prepared** property to **False**.
3232

3333
## Applies To
34-
[Command Object (ADO)](../../../ado/reference/ado-api/command-object-ado.md)
34+
[Command Object (ADO)](./command-object-ado.md)
3535

3636
## See Also
37-
[Prepared Property Example (VB)](../../../ado/reference/ado-api/prepared-property-example-vb.md)
38-
[Prepared Property Example (VC++)](../../../ado/reference/ado-api/prepared-property-example-vc.md)
37+
[Prepared Property Example (VB)](./prepared-property-example-vb.md)
38+
[Prepared Property Example (VC++)](./prepared-property-example-vc.md)

docs/ado/reference/ado-api/prepared-property-example-vb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ author: rothja
1717
ms.author: jroth
1818
---
1919
# Prepared Property Example (VB)
20-
This example demonstrates the [Prepared](../../../ado/reference/ado-api/prepared-property-ado.md) property by opening two [Command](../../../ado/reference/ado-api/command-object-ado.md) objects - one prepared and one not prepared.
20+
This example demonstrates the [Prepared](./prepared-property-ado.md) property by opening two [Command](./command-object-ado.md) objects - one prepared and one not prepared.
2121

2222
```
2323
'BeginPreparedVB
@@ -110,5 +110,5 @@ End Sub
110110
```
111111

112112
## See Also
113-
[Command Object (ADO)](../../../ado/reference/ado-api/command-object-ado.md)
114-
[Prepared Property (ADO)](../../../ado/reference/ado-api/prepared-property-ado.md)
113+
[Command Object (ADO)](./command-object-ado.md)
114+
[Prepared Property (ADO)](./prepared-property-ado.md)

docs/ado/reference/ado-api/prepared-property-example-vc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ author: rothja
1717
ms.author: jroth
1818
---
1919
# Prepared Property Example (VC++)
20-
This example demonstrates the [Prepared](../../../ado/reference/ado-api/prepared-property-ado.md) property by opening two [Command](../../../ado/reference/ado-api/command-object-ado.md) objects - one prepared and one not prepared.
20+
This example demonstrates the [Prepared](./prepared-property-ado.md) property by opening two [Command](./command-object-ado.md) objects - one prepared and one not prepared.
2121

2222
## Example
2323

@@ -139,5 +139,5 @@ void PrintComError(_com_error &e) {
139139
**Not Prepared: 0.016 seconds**
140140
**Prepared: 0.016 seconds**
141141
## See Also
142-
[Command Object (ADO)](../../../ado/reference/ado-api/command-object-ado.md)
143-
[Prepared Property (ADO)](../../../ado/reference/ado-api/prepared-property-ado.md)
142+
[Command Object (ADO)](./command-object-ado.md)
143+
[Prepared Property (ADO)](./prepared-property-ado.md)

docs/ado/reference/ado-api/prompt-property-dynamic-ado.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ ms.author: jroth
1919
Specifies whether the OLE DB provider should prompt the user for initialization information.
2020

2121
## Settings and Return Values
22-
Sets and returns a [ConnectPromptEnum](../../../ado/reference/ado-api/connectpromptenum.md) value.
22+
Sets and returns a [ConnectPromptEnum](./connectpromptenum.md) value.
2323

2424
## Remarks
25-
**Prompt** is a dynamic property, which may be appended to the [Connection](../../../ado/reference/ado-api/connection-object-ado.md) object's [Properties](../../../ado/reference/ado-api/properties-collection-ado.md) collection by the OLE DB provider. To prompt for initialization information, OLE DB providers will typically display a dialog box to the user.
25+
**Prompt** is a dynamic property, which may be appended to the [Connection](./connection-object-ado.md) object's [Properties](./properties-collection-ado.md) collection by the OLE DB provider. To prompt for initialization information, OLE DB providers will typically display a dialog box to the user.
2626

27-
Dynamic properties of a [Connection](../../../ado/reference/ado-api/connection-object-ado.md) object are lost when the **Connection** is closed. The **Prompt** property must be reset before re-opening the **Connection** to use a value other than the default.
27+
Dynamic properties of a [Connection](./connection-object-ado.md) object are lost when the **Connection** is closed. The **Prompt** property must be reset before re-opening the **Connection** to use a value other than the default.
2828

2929
> [!NOTE]
3030
> Do not specify that the provider should prompt the user in scenarios in which the user will not be able to respond to the dialog box. For example, the user will not be able to respond if the application is running on a server system instead of on the user's client, or if the application is running on a system with no user logged on. In these cases, the application will wait indefinitely for a response and seem to lock up.
@@ -38,4 +38,4 @@ cn.Properties("Prompt") = adPromptNever ' do not prompt the user
3838
```
3939

4040
## Applies To
41-
[Connection Object (ADO)](../../../ado/reference/ado-api/connection-object-ado.md)
41+
[Connection Object (ADO)](./connection-object-ado.md)

docs/ado/reference/ado-api/properties-collection-ado.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ author: rothja
2020
ms.author: jroth
2121
---
2222
# Properties Collection (ADO)
23-
Contains all the [Property](../../../ado/reference/ado-api/property-object-ado.md) objects for a specific instance of an object.
23+
Contains all the [Property](./property-object-ado.md) objects for a specific instance of an object.
2424

2525
## Remarks
2626
Some ADO objects have a **Properties** collection made up of **Property** objects. Each **Property** object corresponds to a characteristic of the ADO object specific to the provider.
2727

2828
> [!NOTE]
29-
> See the [Property](../../../ado/reference/ado-api/property-object-ado.md) object topic for a more detailed explanation of how to use **Property** objects.
29+
> See the [Property](./property-object-ado.md) object topic for a more detailed explanation of how to use **Property** objects.
3030
3131
The **Dynamic Properties** of the **Recordset** object go out of scope (become unavailable) when the **Recordset** is closed.
3232

3333
This section contains the following topics.
3434

35-
- [Properties Collection Properties, Methods, and Events](../../../ado/reference/ado-api/properties-collection-properties-methods-and-events.md)
35+
- [Properties Collection Properties, Methods, and Events](./properties-collection-properties-methods-and-events.md)
3636

3737
## See Also
38-
[Property Object (ADO)](../../../ado/reference/ado-api/property-object-ado.md)
39-
[Appendix A: Providers](../../../ado/guide/appendixes/appendix-a-providers.md)
38+
[Property Object (ADO)](./property-object-ado.md)
39+
[Appendix A: Providers](../../guide/appendixes/appendix-a-providers.md)

0 commit comments

Comments
 (0)