Skip to content

Commit 8937511

Browse files
committed
Bringing even with master.
2 parents acd4780 + 3ee413d commit 8937511

3,376 files changed

Lines changed: 93995 additions & 90663 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/ado-glossary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ caps.latest.revision: 15
1616
author: "MightyPen"
1717
ms.author: "genemi"
1818
manager: "jhubbard"
19+
ms.workload: "Inactive"
1920
---
2021
# ADO Glossary Terms
2122
This topic defines terms relevant to ADO.

docs/ado/guide/ado-history.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ caps.latest.revision: 13
1515
author: "MightyPen"
1616
ms.author: "genemi"
1717
manager: "jhubbard"
18+
ms.workload: "Inactive"
1819
---
1920
# ADO Features for each Release
2021
This topic lists the new features introduced by each release of ADO, ADO MD, and ADOX.

docs/ado/guide/ado-introduction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ caps.latest.revision: 14
1515
author: "MightyPen"
1616
ms.author: "MightyPen"
1717
manager: "jhubbard"
18+
ms.workload: "Inactive"
1819
---
1920
# ADO Overview and Benefits
2021
ActiveX Data Objects (ADO) is a high-level, easy-to-use interface to OLE DB. OLE DB is a low-level, high-performance interface to a variety of data stores. Both ADO and OLE DB can work with relational (tabular) and nonrelational (hierarchical or stream) data.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ caps.latest.revision: 12
1515
author: "MightyPen"
1616
ms.author: "genemi"
1717
manager: "jhubbard"
18+
ms.workload: "On Demand"
1819
---
1920
# ADO Programmer's Guide for using ADO Objects
2021
This documentation provides an overview of how to use ADO objects to work with data from various data sources. First, the introduction summarizes the new features and the requirement for installing, using, and redistributing the ADO component. The next sections discuss the use of the various types of ADO objects. Finally, the appendixes discuss various Microsoft-supplied data and service providers, error messages, and tips about how to use ADO in several programming languages, in addition to samples and a glossary.

docs/ado/guide/ado-security-design-issues.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ caps.latest.revision: 18
1515
author: "MightyPen"
1616
ms.author: "genemi"
1717
manager: "jhubbard"
18+
ms.workload: "Inactive"
1819
---
1920
# ADO Security Design Features
2021
The following sections describe security design features in ActiveX Data Objects (ADO) 2.8 and later. These changes were made in ADO 2.8 to improve security. ADO 6.0, which is included in Windows DAC 6.0 in Windows Vista, is functionally equivalent to ADO 2.8, which was included in MDAC 2.8 in Windows XP and Windows Server 2003. This topic provides information about how to best secure your applications in ADO 2.8 or later.

docs/ado/guide/ado-task-table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ caps.latest.revision: 9
1616
author: "MightyPen"
1717
ms.author: "genemi"
1818
manager: "jhubbard"
19+
ms.workload: "Inactive"
1920
---
2021
# ADO Programming Task Table
2122
The following table lists programming tasks contained in the *ADO Programmer's Guide* and provides references for each task. These references can be textual descriptions or code examples in which you can find information about the ADO feature that performs the task.

docs/ado/guide/ado-technology-table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ caps.latest.revision: 15
1515
author: "MightyPen"
1616
ms.author: "genemi"
1717
manager: "jhubbard"
18+
ms.workload: "Inactive"
1819
---
1920
# Products and Technologies Table
2021
The following table lists the Microsoft products, tools, and technologies discussed in the ADO Programmer's Guide. It provides links, wherever possible, to relevant topics in the guide.

docs/ado/guide/appendixes/ado-error-codes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ caps.latest.revision: 11
1616
author: "MightyPen"
1717
ms.author: "genemi"
1818
manager: "jhubbard"
19+
ms.workload: "Inactive"
1920
---
2021
# Capture ADO Error Codes
2122
In addition to the provider errors returned in the [Error](../../../ado/reference/ado-api/error-object.md) objects of the [Errors](../../../ado/reference/ado-api/errors-collection-ado.md) collection, ADO itself can return errors to the exception-handling mechanism of your run-time environment. Use the error trapping mechanism your programming language, such as the **On Error** statement in Microsoft® Visual Basic, or the **try-catch** block in Microsoft Visual C++®, to capture ADO errors.

docs/ado/guide/appendixes/ado-java-class-wrappers.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ caps.latest.revision: 10
1616
author: "MightyPen"
1717
ms.author: "genemi"
1818
manager: "jhubbard"
19+
ms.workload: "Inactive"
1920
---
2021
# ADO Java Class Wrappers
2122
This code declares an instance of the ADO [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md) class wrapper and initializes it, all on the same line of code. Further, it declares variables for each of the arguments in the [Open](../../../ado/reference/ado-api/open-method-ado-recordset.md) method, especially for [LockType](../../../ado/reference/ado-api/locktype-property-ado.md) and [CursorType](../../../ado/reference/ado-api/cursortype-property-ado.md) (because Java doesn't support enumerated types). It opens and closes the **Recordset** object. Setting Rs1 to NULL merely schedules that variable to be released when Java performs its systematic and intermittent release of unused objects.
@@ -39,4 +40,4 @@ public static void main( String args[])
3940
```
4041

4142
## See Also
42-
[Using the Microsoft SDK for Java](../../../ado/guide/appendixes/using-the-microsoft-sdk-for-java.md)
43+
[Using the Microsoft SDK for Java](../../../ado/guide/appendixes/using-the-microsoft-sdk-for-java.md)

docs/ado/guide/appendixes/appendix-a-providers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ caps.latest.revision: 14
2020
author: "MightyPen"
2121
ms.author: "genemi"
2222
manager: "jhubbard"
23+
ms.workload: "Inactive"
2324
---
2425
# Appendix A: Data and Service Providers
2526
This section addresses three kinds of providers: data providers, service providers, and service components. Providers fall into two categories: those providing data and those providing services. A *data provider* owns its own data and exposes it in tabular form to your application. A *service provider* encapsulates a service by producing and consuming data, augmenting features in your ADO applications. A service provider may also be further defined as a *service component*, which must work together with other service providers or components.

0 commit comments

Comments
 (0)