You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/sortdirection-property-rds.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,20 +30,18 @@ DataControl.SortDirection = value
30
30
31
31
#### Parameters
32
32
*DataControl*
33
-
An object variable that represents an [RDS.DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) object.
33
+
An object variable that represents an [RDS.DataControl](./datacontrol-object-rds.md) object.
34
34
35
35
*Value*
36
36
A **Boolean** value that, when set to **True**, indicates the sort direction is ascending. **False** indicates descending order.
37
37
38
38
## Remarks
39
-
The [SortColumn](../../../ado/reference/rds-api/sortcolumn-property-rds.md), **SortDirection**, [FilterValue](../../../ado/reference/rds-api/filtervalue-property-rds.md), [FilterCriterion](../../../ado/reference/rds-api/filtercriterion-property-rds.md), and [FilterColumn](../../../ado/reference/rds-api/filtercolumn-property-rds.md) properties provide sorting and filtering functionality on the client-side cache. The sorting functionality orders records by using values from one column. The filtering functionality displays a subset of records based on find criteria, while the full [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md) is maintained in the cache. The [Reset](../../../ado/reference/rds-api/reset-method-rds.md) method will execute the criteria and replace the current **Recordset** with an updatable **Recordset**.
39
+
The [SortColumn](./sortcolumn-property-rds.md), **SortDirection**, [FilterValue](./filtervalue-property-rds.md), [FilterCriterion](./filtercriterion-property-rds.md), and [FilterColumn](./filtercolumn-property-rds.md) properties provide sorting and filtering functionality on the client-side cache. The sorting functionality orders records by using values from one column. The filtering functionality displays a subset of records based on find criteria, while the full [Recordset](../ado-api/recordset-object-ado.md) is maintained in the cache. The [Reset](./reset-method-rds.md) method will execute the criteria and replace the current **Recordset** with an updatable **Recordset**.
[FilterColumn, FilterCriterion, FilterValue, SortColumn, and SortDirection Properties and Reset Method Example (VBScript)](../../../ado/reference/rds-api/filter-column-criterion-value-sortcolumn-sortdirection-example-vbscript.md)
[FilterColumn, FilterCriterion, FilterValue, SortColumn, and SortDirection Properties and Reset Method Example (VBScript)](./filter-column-criterion-value-sortcolumn-sortdirection-example-vbscript.md)
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/sql-property-example-vbscript.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ ms.author: jroth
20
20
> [!IMPORTANT]
21
21
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](https://go.microsoft.com/fwlink/?LinkId=199565).
22
22
23
-
The following code shows how to set the [RDS.DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) SQL parameter at design time and bind it to a data-aware control using the database called *Pubs*, which ships with Microsoft SQL Server. To test the example, copy the following code into a normal ASP document named **SQLDesignVBS.asp** on your Web server.
23
+
The following code shows how to set the [RDS.DataControl](./datacontrol-object-rds.md) SQL parameter at design time and bind it to a data-aware control using the database called *Pubs*, which ships with Microsoft SQL Server. To test the example, copy the following code into a normal ASP document named **SQLDesignVBS.asp** on your Web server.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/sql-property.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,9 @@ author: rothja
16
16
ms.author: jroth
17
17
---
18
18
# SQL Property
19
-
Indicates the query string used to retrieve the [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md).
19
+
Indicates the query string used to retrieve the [Recordset](../ado-api/recordset-object-ado.md).
20
20
21
-
You can set the **SQL** property at design time in the [RDS.DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) object's OBJECT tags, or at run time in scripting code.
21
+
You can set the **SQL** property at design time in the [RDS.DataControl](./datacontrol-object-rds.md) object's OBJECT tags, or at run time in scripting code.
22
22
23
23
> [!IMPORTANT]
24
24
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](https://go.microsoft.com/fwlink/?LinkId=199565).
@@ -44,13 +44,11 @@ Run time: DataControl.SQL = "QueryString"
44
44
The **SQL** property is optional if a custom server-side business object retrieves the data for the client.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/submitchanges-method-example-vbscript.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ ms.author: jroth
19
19
> [!IMPORTANT]
20
20
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](https://go.microsoft.com/fwlink/?LinkId=199565).
21
21
22
-
The following code fragment shows how to use the [SubmitChanges](../../../ado/reference/rds-api/submitchanges-method-rds.md) method with an [RDS.DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) object.
22
+
The following code fragment shows how to use the [SubmitChanges](./submitchanges-method-rds.md) method with an [RDS.DataControl](./datacontrol-object-rds.md) object.
23
23
24
24
To test this example, cut and paste this code into a normal ASP document and name it **SubmitChangesCtrlVBS.asp**. ASP script will identify your server.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/submitchanges-method-rds.md
+12-15Lines changed: 12 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ author: rothja
16
16
ms.author: jroth
17
17
---
18
18
# SubmitChanges Method (RDS)
19
-
Submits pending changes of the locally cached and updatable [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md) to the data source specified in the [Connect](../../../ado/reference/rds-api/connect-property-rds.md) property or the [URL](../../../ado/reference/rds-api/url-property-rds.md) property.
19
+
Submits pending changes of the locally cached and updatable [Recordset](../ado-api/recordset-object-ado.md) to the data source specified in the [Connect](./connect-property-rds.md) property or the [URL](./url-property-rds.md) property.
20
20
21
21
> [!IMPORTANT]
22
22
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](https://go.microsoft.com/fwlink/?LinkId=199565).
An object variable that represents an [RDS.DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) object.
33
+
An object variable that represents an [RDS.DataControl](./datacontrol-object-rds.md) object.
34
34
35
35
*DataFactory*
36
-
An object variable that represents an [RDSServer.DataFactory](../../../ado/reference/rds-api/datafactory-object-rdsserver.md) object.
36
+
An object variable that represents an [RDSServer.DataFactory](./datafactory-object-rdsserver.md) object.
37
37
38
38
*Connection*
39
-
A **String** value that represents the connection created with the **RDS.DataControl** object's [Connect](../../../ado/reference/rds-api/connect-property-rds.md) property.
39
+
A **String** value that represents the connection created with the **RDS.DataControl** object's [Connect](./connect-property-rds.md) property.
40
40
41
41
*Recordset*
42
42
An object variable that represents a **Recordset** object.
43
43
44
44
## Remarks
45
-
The [Connect](../../../ado/reference/rds-api/connect-property-rds.md), [Server](../../../ado/reference/rds-api/server-property-rds.md), and [SQL](../../../ado/reference/rds-api/sql-property.md) properties must be set before you can use the **SubmitChanges** method with the **RDS.DataControl** object.
45
+
The [Connect](./connect-property-rds.md), [Server](./server-property-rds.md), and [SQL](./sql-property.md) properties must be set before you can use the **SubmitChanges** method with the **RDS.DataControl** object.
46
46
47
-
If you call the [CancelUpdate](../../../ado/reference/rds-api/cancelupdate-method-rds.md) method after you have called **SubmitChanges** for the same **Recordset** object, the **CancelUpdate** call fails because the changes have already been committed.
47
+
If you call the [CancelUpdate](./cancelupdate-method-rds.md) method after you have called **SubmitChanges** for the same **Recordset** object, the **CancelUpdate** call fails because the changes have already been committed.
48
48
49
49
Only the changed records are sent for modification, and either all of the changes succeed or all the changes fail together.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/synchronize-method-rds.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,4 @@ object.Synchronize(ConnectionString As String, HandlerString As String, lSynchro
62
62
The *HandlerString* parameter may be null. What happens in this case depends on how the RDS server is configured. A handler string of "MSDFMAP.handler" indicates that the Microsoft supplied handler (Msdfmap.dll) should be used. A handler string of "MASDFMAP.handler,sample.ini" indicates that the Msdfmap.dll handler should be used and that the argument "sample.ini" should be passed to the handler. Msdfmap.dll will then interpret the argument as a direction to use the sample.ini to check the connection and query strings.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/synchronize21-method-rds.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,9 +56,7 @@ object.Synchronize21(ConnectionString As String, HandlerString As String, lSynch
56
56
The *HandlerString* parameter can be null. What happens in this case depends on how the RDS server is configured. A handler string of "MSDFMAP.handler" indicates that the Microsoft supplied handler (Msdfmap.dll) should be used. A handler string of "MASDFMAP.handler,sample.ini" indicates that the Msdfmap.dll handler should be used and that the argument "sample.ini" should be passed to the handler. Msdfmap.dll will then interpret the argument as a direction to use the sample.ini to check the connection and query strings.
57
57
58
58
> [!NOTE]
59
-
> The **Synchronize21** method is simply a version of the [Synchronize Method (RDS)](../../../ado/reference/rds-api/synchronize-method-rds.md). Where you need to use the **Synchronize** method to communicate with ADO 2.1, the **Synchronize21** method can be called instead. The capabilities of the **Synchronize** method in ADO 2.5 and later are a superset of the capabilities provided for the same method in ADO 2.1.
59
+
> The **Synchronize21** method is simply a version of the [Synchronize Method (RDS)](./synchronize-method-rds.md). Where you need to use the **Synchronize** method to communicate with ADO 2.1, the **Synchronize21** method can be called instead. The capabilities of the **Synchronize** method in ADO 2.5 and later are a superset of the capabilities provided for the same method in ADO 2.1.
Copy file name to clipboardExpand all lines: docs/ado/reference/rds-api/url-property-rds.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ ms.author: jroth
18
18
# URL Property (RDS)
19
19
Indicates a string that contains a relative or absolute URL.
20
20
21
-
You can set the **URL** property at design time in the [DataControl](../../../ado/reference/rds-api/datacontrol-object-rds.md) object's OBJECT tag, or at run time in scripting code.
21
+
You can set the **URL** property at design time in the [DataControl](./datacontrol-object-rds.md) object's OBJECT tag, or at run time in scripting code.
22
22
23
23
> [!IMPORTANT]
24
24
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](https://go.microsoft.com/fwlink/?LinkId=199565).
@@ -39,14 +39,12 @@ Run time: DataControl.URL="Server"
39
39
An object variable that represents a **DataControl** object.
40
40
41
41
## Remarks
42
-
Typically, the URL identifies an Active Server Page (.asp) file that can produce and return a [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md). Therefore, the user can obtain a **Recordset** without having to invoke the server-side [DataFactory](../../../ado/reference/rds-api/datafactory-object-rdsserver.md) object, or program a custom business object.
42
+
Typically, the URL identifies an Active Server Page (.asp) file that can produce and return a [Recordset](../ado-api/recordset-object-ado.md). Therefore, the user can obtain a **Recordset** without having to invoke the server-side [DataFactory](./datafactory-object-rdsserver.md) object, or program a custom business object.
43
43
44
-
If the **URL** property has been set, [SubmitChanges](../../../ado/reference/rds-api/submitchanges-method-rds.md) will submit changes to the location specified by the URL.
44
+
If the **URL** property has been set, [SubmitChanges](./submitchanges-method-rds.md) will submit changes to the location specified by the URL.
0 commit comments