Skip to content

Commit efd7630

Browse files
author
MightyPen
committed
docs/ado/ , http:// add 's', erase 'en-us/'.
1 parent cefef37 commit efd7630

100 files changed

Lines changed: 150 additions & 150 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/guide/appendixes/microsoft-ole-db-remoting-provider-ado-service-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ cn.Properties("Internet Timeout") = 5000
7878
Dim rs as New ADODB.Recordset
7979
Dim cn as New ADODB.Connection
8080
cn.Open  "Provider=MS Remote;Data Source=pubs;" & _
81-
         "Remote Server=http://YourServer"
81+
         "Remote Server=https://YourServer"
8282
rs.Open "SELECT * FROM authors", cn
8383
...                'Edit the recordset
8484
rs.UpdateBatch     'Equivalent of RDS SubmitChanges

docs/ado/guide/appendixes/microsoft-ole-db-simple-provider.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ adoRS.Open "https://WebServer/VRoot/portfolio.xml, adoConn
110110
111111
```vb
112112
'HTTP://
113-
adoRS.Open "http://WebServer/VRoot/portfolio.xml", adoConn
113+
adoRS.Open "https://WebServer/VRoot/portfolio.xml", adoConn
114114
'FILE://
115115
adoRS.Open "file:/// C:\\Directory\\portfolio.xml", adoConn
116116
'UNC Path
@@ -146,7 +146,7 @@ adoRS.Open "C:\Directory\portfolio.xml", adoConn
146146
<price>$70.00</price>
147147
<info>
148148
<companyname>Microsoft Corporation</companyname>
149-
<website>http://www.microsoft.com</website>
149+
<website>https://www.microsoft.com</website>
150150
</info>
151151
</stock>
152152
<stock>
@@ -155,7 +155,7 @@ adoRS.Open "C:\Directory\portfolio.xml", adoConn
155155
<price>$107.00</price>
156156
<info>
157157
<companyname>Apple Computer, Inc.</companyname>
158-
<website>http://www.apple.com</website>
158+
<website>https://www.apple.com</website>
159159
</info>
160160
</stock>
161161
<stock>
@@ -164,7 +164,7 @@ adoRS.Open "C:\Directory\portfolio.xml", adoConn
164164
<price>$50.00</price>
165165
<info>
166166
<companyname>Dell Corporation</companyname>
167-
<website>http://www.dell.com</website>
167+
<website>https://www.dell.com</website>
168168
</info>
169169
</stock>
170170
<stock>
@@ -173,7 +173,7 @@ adoRS.Open "C:\Directory\portfolio.xml", adoConn
173173
<price>$115.00</price>
174174
<info>
175175
<companyname>Intel Corporation</companyname>
176-
<website>http://www.intel.com</website>
176+
<website>https://www.intel.com</website>
177177
</info>
178178
</stock>
179179
</portfolio>
@@ -195,7 +195,7 @@ Private Sub BrowseHierRecordset()
195195
Set adoChildRS = ADODB.Recordset
196196

197197
adoConn.Open "Provider=MSDAOSP; Data Source=MSXML2.DSOControl.2.6;"
198-
adoRS.Open "http://bwillett3/Kowalski/portfolio.xml", adoConn
198+
adoRS.Open "https://bwillett3/Kowalski/portfolio.xml", adoConn
199199

200200
Dim iLevel As Integer
201201
iLevel = 0

docs/ado/guide/data/absolute-and-relative-urls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ A URL specifies the location of a target stored on a local or networked computer
6262
For example, the following code sample shows how to open a **Recordset** on the Readme25.txt file of the Winnt/system32 directory:
6363

6464
```
65-
recordset.Open "system32/Readme25.txt", "URL=http://YourServer/Winnt/",,,adCmdTableDirect
65+
recordset.Open "system32/Readme25.txt", "URL=https://YourServer/Winnt/",,,adCmdTableDirect
6666
```
6767

6868
The absolute URL in the connection string specifies the server (`YourServer`) and the path (`Winnt`). This URL also defines the context.
@@ -74,7 +74,7 @@ recordset.Open "system32/Readme25.txt", "URL=http://YourServer/Winnt/",,,adCmdT
7474
As another example, the following code will open a **Recordset** on the contents of the `Winnt` directory:
7575

7676
```
77-
recordset.Open "", "URL=http://YourServer/Winnt/",,,adCmdTableDirect
77+
recordset.Open "", "URL=https://YourServer/Winnt/",,,adCmdTableDirect
7878
```
7979

8080
## OLE DB Provider-Supplied URL Schemes

docs/ado/guide/data/ado-error-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The **ErrorValueEnum** constant describes the ADO error values. For a complete l
5858
|**3724**|**adErrCantConvertvalue**|Data value cannot be converted for reasons other than sign mismatch or data overflow. For example, conversion would have truncated data.|
5959
|**3725**|**adErrCantCreate**|Data value cannot be set or retrieved because the field data type was unknown, or the provider had insufficient resources to perform the operation.|
6060
|**3726**|**adErrColumnNotOnThisRow**|Record does not contain this field. An incorrect field name was specified or a field not in the **Fields** collection of the current record was referenced.|
61-
|**3727**|**adErrURLDoesNotExist**|Either the source URL or the parent of the destination URL does not exist. There is a typographical error in either the source or destination URL. You might have `http://mysite/photo/myphoto.jpg` when you should actually have `http://mysite/photos/myphoto.jpg` instead. The typographical error in the parent URL (in this case, *photo* instead of *photos*) has caused the error.|
61+
|**3727**|**adErrURLDoesNotExist**|Either the source URL or the parent of the destination URL does not exist. There is a typographical error in either the source or destination URL. You might have `https://mysite/photo/myphoto.jpg` when you should actually have `https://mysite/photos/myphoto.jpg` instead. The typographical error in the parent URL (in this case, *photo* instead of *photos*) has caused the error.|
6262
|**3728**|**adErrTreePermissionDenied**|Permissions are insufficient to access tree or subtree. The user named in the connection string does not have the appropriate permissions.|
6363
|**3729**|**adErrInvalidURL**|URL contains invalid characters. Make sure the URL is typed correctly. The URL follows the scheme registered to the current provider (for example, Internet Publishing Provider is registered for http).|
6464
|**3730**|**adErrResourceLocked**|Object represented by the specified URL is locked by one or more other processes. Wait until the process has finished and attempt the operation again. The object you are trying to access has been locked by another user or by another process in your application. This is most likely to arise in a multi-user environment.|

docs/ado/guide/data/calling-a-stored-procedure-with-a-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ End Function
128128
```
129129

130130
## See Also
131-
[Knowledge Base article 117500](http://go.microsoft.com/fwlink/?LinkId=117500)
131+
[Knowledge Base article 117500](https://go.microsoft.com/fwlink/?LinkId=117500)

docs/ado/guide/data/namespaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The XML persistence format in ADO uses the following four namespaces.
2727
|rs|Refers to the namespace containing elements and attributes specific to ADO Recordset properties and attributes.|
2828
|z|Refers to the schema of the current rowset.|
2929

30-
A client should not add its own tags to these namespaces, as defined by the specification. For example, a client should not define a namespace as "urn:schemas-microsoft-com:rowset" and then write out something such as "rs:MyOwnTag." To learn more about namespaces, see the [W3C Namespaces in XML Recommendation](http://www.w3.org/TR/REC-xml-names/).
30+
A client should not add its own tags to these namespaces, as defined by the specification. For example, a client should not define a namespace as "urn:schemas-microsoft-com:rowset" and then write out something such as "rs:MyOwnTag." To learn more about namespaces, see the [W3C Namespaces in XML Recommendation](https://www.w3.org/TR/REC-xml-names/).
3131

3232
> [!IMPORTANT]
3333
> The ID for the schema tag must be "RowsetSchema," and the namespace used to refer to the schema of the current rowset must point to "#RowsetSchema."

docs/ado/guide/data/persisting-hierarchical-recordsets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ manager: craigg
1919
# Persisting Hierarchical Recordsets
2020
You can save a hierarchical **Recordset** to a file in either ADTG or XML format by calling the [Save](../../../ado/reference/ado-api/save-method.md) method. However, two limitations apply when saving hierarchical **Recordset**s in XML format: You cannot save in XML if the hierarchical **Recordset** contains pending updates, and you cannot save a parameterized hierarchical **Recordset**.
2121

22-
For more information about the Data Shaping provider, see [Microsoft Data Shaping Service for OLE DB](../../../ado/guide/appendixes/microsoft-data-shaping-service-for-ole-db-ado-service-provider.md) (ADO) and [Overview of the Data Shaping Service for OLE DB](http://msdn.microsoft.com/9f51e471-8e85-448e-9fb8-b64bbf767bf3).
22+
For more information about the Data Shaping provider, see [Microsoft Data Shaping Service for OLE DB](../../../ado/guide/appendixes/microsoft-data-shaping-service-for-ole-db-ado-service-provider.md) (ADO) and [Overview of the Data Shaping Service for OLE DB](https://msdn.microsoft.com/9f51e471-8e85-448e-9fb8-b64bbf767bf3).
2323

2424
## See Also
2525
[Data Shaping Example](../../../ado/guide/data/data-shaping-example.md)

docs/ado/guide/data/schema-section.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The schema section is required. As the previous example shows, ADO writes out de
9393
Similarly, because there is no alias defined for `CompanyName` in the previous example, `CompanyName` must be used consistently throughout the document.
9494

9595
## Data Types
96-
You can apply a data type to a column with the dt:type attribute. For the definitive guide to allowed XML types, see the Data Types section of the [W3C XML-Data specification](http://www.w3.org/TR/1998/NOTE-XML-data/). You can specify a data type in two ways: either specify the dt:type attribute directly on the column definition itself or use the s:datatype construct as a nested element of the column definition. For example,
96+
You can apply a data type to a column with the dt:type attribute. For the definitive guide to allowed XML types, see the Data Types section of the [W3C XML-Data specification](https://www.w3.org/TR/1998/NOTE-XML-data/). You can specify a data type in two ways: either specify the dt:type attribute directly on the column definition itself or use the s:datatype construct as a nested element of the column definition. For example,
9797

9898
```
9999
<s:AttributeType name="Phone" >

docs/ado/guide/data/service-providers-and-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Service providers are components that extend the functionality of data providers
2121

2222
Universal Data Access provides a *component architecture* that allows individual, specialized components to implement discrete sets of database functionality, or "services," on top of less capable stores. Thus, rather than forcing each data store to provide its own implementation of extended functionality or forcing generic applications to implement database functionality internally, service components provide a common implementation that any application can use when accessing any data store. The fact that some functionality is implemented natively by the data store and some through generic components is transparent to the application.
2323

24-
For example, a cursor engine, such as [The Cursor Service for OLE DB](http://msdn.microsoft.com/57638feb-4ecd-4051-becb-8f828d21cf44), is a service component that can consume data from a sequential, forward-only data store to produce scrollable data. Other service providers commonly used by ADO include the [Microsoft OLE DB Persistence Provider (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-ole-db-persistence-provider-ado-service-provider.md) (for saving data to a file), the [Microsoft Data Shaping Service for OLE DB (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-data-shaping-service-for-ole-db-ado-service-provider.md) (for hierarchical **Recordsets**), and the [Microsoft OLE DB Remoting Provider (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-ole-db-remoting-provider-ado-service-provider.md) (for invoking data providers on a remote computer).
24+
For example, a cursor engine, such as [The Cursor Service for OLE DB](https://msdn.microsoft.com/57638feb-4ecd-4051-becb-8f828d21cf44), is a service component that can consume data from a sequential, forward-only data store to produce scrollable data. Other service providers commonly used by ADO include the [Microsoft OLE DB Persistence Provider (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-ole-db-persistence-provider-ado-service-provider.md) (for saving data to a file), the [Microsoft Data Shaping Service for OLE DB (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-data-shaping-service-for-ole-db-ado-service-provider.md) (for hierarchical **Recordsets**), and the [Microsoft OLE DB Remoting Provider (ADO Service Provider)](../../../ado/guide/appendixes/microsoft-ole-db-remoting-provider-ado-service-provider.md) (for invoking data providers on a remote computer).
2525

2626
For more information about service and data providers, see [Appendix A: Providers](../../../ado/guide/appendixes/appendix-a-providers.md).

docs/ado/guide/data/shape-commands-in-general.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Data shaping defines the columns of a shaped **Recordset**, the relationships be
4040

4141
You can access the **Recordset** components of the shaped **Recordset** programmatically or through an appropriate visual control.
4242

43-
Microsoft provides a visual tool that generates shape commands (see the [Data Environment Designer](http://go.microsoft.com/fwlink/?LinkId=5689) in the Visual Basic 6 documentation) and another that displays hierarchical cursors (see "Using the Microsoft Hierarchical Flexgrid Control" in the Visual Basic 6 documentation).
43+
Microsoft provides a visual tool that generates shape commands (see the [Data Environment Designer](https://go.microsoft.com/fwlink/?LinkId=5689) in the Visual Basic 6 documentation) and another that displays hierarchical cursors (see "Using the Microsoft Hierarchical Flexgrid Control" in the Visual Basic 6 documentation).
4444

4545
For information about navigating a hierarchical **Recordset**, see [Accessing Rows in a Hierarchical Recordset](../../../ado/guide/data/accessing-rows-in-a-hierarchical-recordset.md).
4646

0 commit comments

Comments
 (0)