Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 49dfdaf

Browse files
authored
Merge pull request #8012 from MightyPen/cats-connect-079
CATS GeneMi-connect-20181107 P1, http: to https:
2 parents d978618 + 2a917da commit 49dfdaf

1 file changed

Lines changed: 34 additions & 34 deletions

File tree

docs/connect/homepage-sql-connection-programming.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: "Homepage for SQL client programming | Microsoft Docs"
3-
description: "Hub page with annotated links to downloads and documentation for numerous combinations of languages and operating systems, for connecting to SQL Server or to Azure SQL Database."
2+
title: Homepage for SQL client programming | Microsoft Docs
3+
description: Hub page with annotated links to downloads and documentation for numerous combinations of languages and operating systems, for connecting to SQL Server or to Azure SQL Database.
44
author: MightyPen
5-
ms.date: "04/16/2018"
5+
ms.date: 11/07/2018
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.custom: ""
99
ms.technology: connectivity
1010
ms.topic: conceptual
11-
ms.reviewer: "meetb"
11+
ms.reviewer: v-daveng
1212
ms.author: genemi
1313
---
1414
# Homepage for client programming to Microsoft SQL Server
@@ -28,8 +28,8 @@ In any given language, the code that connects to SQL Server is almost identical
2828

2929
For details about the connection strings for connecting to Azure SQL Database, see:
3030

31-
- [Use .NET Core (C#) to query an Azure SQL database](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-dotnet-core).
32-
- Other Azure SQL Database that are nearby the preceding article in the table of contents, about other languages. For instance, see [Use PHP to query an Azure SQL database](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-php).
31+
- [Use .NET Core (C#) to query an Azure SQL database](/azure/sql-database/sql-database-connect-query-dotnet-core).
32+
- Other Azure SQL Database that are nearby the preceding article in the table of contents, about other languages. For instance, see [Use PHP to query an Azure SQL database](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-php).
3333

3434

3535
#### Build-an-app webpages
@@ -73,17 +73,17 @@ The .NET managed languages, such as C# and Visual Basic, are the most common use
7373
| :-- | :-- |
7474
| [Proof of concept connecting to SQL using ADO.NET](./ado-net/step-3-proof-of-concept-connecting-to-sql-using-ado-net.md) | A small code example focused on connecting and querying SQL Server. |
7575
| [Connect resiliently to SQL with ADO.NET](./ado-net/step-4-connect-resiliently-to-sql-with-ado-net.md) | Retry logic in a code example, because connections can occasionally experience moments of connectivity loss.<br /><br />Retry logic applies well to connections maintained through the internet into any cloud database, such as to Azure SQL Database. |
76-
| [Azure SQL Database: Demonstration of how to use .NET Core on Windows/Linux/macOS to create a C# program, to connect and query](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-dotnet-core) | Azure SQL Database example. |
77-
| [Build-an-app: C#, ADO.NET, Windows](http://www.microsoft.com/sql-server/developer-get-started/csharp/win/) | Configuration information, along with code examples. |
76+
| [Azure SQL Database: Demonstration of how to use .NET Core on Windows/Linux/macOS to create a C# program, to connect and query](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-dotnet-core) | Azure SQL Database example. |
77+
| [Build-an-app: C#, ADO.NET, Windows](https://www.microsoft.com/sql-server/developer-get-started/csharp/win/) | Configuration information, along with code examples. |
7878
| &nbsp; | <br /> |
7979

8080
#### Documentation
8181

8282
|||
8383
| :-- | :-- |
8484
| [C# using ADO.NET](./ado-net/index.md)| Root of our documentation. |
85-
| [Namespace: System.Data](http://docs.microsoft.com/dotnet/api/system.data) | A set of classes used for ADO.NET. |
86-
| [Namespace: System.Data.SqlClient](http://docs.microsoft.com/dotnet/api/system.data.SqlClient) | The set of classes that are most directly the center of ADO.NET. |
85+
| [Namespace: System.Data](https://docs.microsoft.com/dotnet/api/system.data) | A set of classes used for ADO.NET. |
86+
| [Namespace: System.Data.SqlClient](https://docs.microsoft.com/dotnet/api/system.data.SqlClient) | The set of classes that are most directly the center of ADO.NET. |
8787
| &nbsp; | <br /> |
8888

8989

@@ -97,23 +97,23 @@ Entity Framework (EF) provides Object-Relational Mapping (ORM). ORM makes it eas
9797
EF has direct or indirect relationships with the following technologies:
9898

9999
- .NET Framework
100-
- [LINQ to SQL](http://docs.microsoft.com/dotnet/framework/data/adonet/sql/linq/), or [LINQ to Entities](http://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/linq-to-entities)
100+
- [LINQ to SQL](https://docs.microsoft.com/dotnet/framework/data/adonet/sql/linq/), or [LINQ to Entities](https://docs.microsoft.com/dotnet/framework/data/adonet/ef/language-reference/linq-to-entities)
101101
- Language syntax enhancements, such as the **=>** operator in C#.
102-
- Handy programs that generate source code for classes which map to the tables in your SQL database. For instance, [EdmGen.exe](http://docs.microsoft.com/dotnet/framework/data/adonet/ef/edm-generator-edmgen-exe).
102+
- Handy programs that generate source code for classes which map to the tables in your SQL database. For instance, [EdmGen.exe](https://docs.microsoft.com/dotnet/framework/data/adonet/ef/edm-generator-edmgen-exe).
103103

104104

105105
#### Original EF, and new EF
106106

107-
The [start page for Entity Framework](http://docs.microsoft.com/ef/) introduces EF with a description similar to the following:
107+
The [start page for Entity Framework](https://docs.microsoft.com/ef/) introduces EF with a description similar to the following:
108108

109109
- Entity Framework is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access source code that developers usually need to write.
110110

111111
*Entity Framework* is a name shared by two separate source code branches. One EF branch is older, and its source code can now be maintained by the public. The other EF is new. The two EFs are described next:
112112

113113
| | |
114114
| :-- | :-- |
115-
| [EF 6.x](http://docs.microsoft.com/ef/ef6/) | Microsoft first released EF in August 2008. In March 2015 Microsoft announced that EF 6.x was the final version that Microsoft would develop. Microsoft released the source code into the public domain.<br /><br />Initially EF was part of .NET Framework. But EF 6.x was removed from .NET Framework.<br /><br />[EF 6.x source code on Github, in repository *aspnet/EntityFramework6*](http://github.com/aspnet/EntityFramework6) |
116-
| [EF Core](http://docs.microsoft.com/ef/core/) | Microsoft released the newly developed EF Core in June 2016. EF Core is designed for better flexibility and portability. EF Core can run on operating systems beyond just Microsoft Windows. And EF Core can interact with databases beyond just Microsoft SQL Server and other relational databases.<br /><br />**C&#x23; code examples:**<br />[Getting Started with Entity Framework Core](https://docs.microsoft.com/ef/core/get-started/index)<br />[Getting started with EF Core on .NET Framework with an Existing Database](https://docs.microsoft.com/ef/core/get-started/full-dotnet/existing-db) |
115+
| [EF 6.x](https://docs.microsoft.com/ef/ef6/) | Microsoft first released EF in August 2008. In March 2015 Microsoft announced that EF 6.x was the final version that Microsoft would develop. Microsoft released the source code into the public domain.<br /><br />Initially EF was part of .NET Framework. But EF 6.x was removed from .NET Framework.<br /><br />[EF 6.x source code on Github, in repository *aspnet/EntityFramework6*](https://github.com/aspnet/EntityFramework6) |
116+
| [EF Core](https://docs.microsoft.com/ef/core/) | Microsoft released the newly developed EF Core in June 2016. EF Core is designed for better flexibility and portability. EF Core can run on operating systems beyond just Microsoft Windows. And EF Core can interact with databases beyond just Microsoft SQL Server and other relational databases.<br /><br />**C&#x23; code examples:**<br />[Getting Started with Entity Framework Core](https://docs.microsoft.com/ef/core/get-started/index)<br />[Getting started with EF Core on .NET Framework with an Existing Database](https://docs.microsoft.com/ef/core/get-started/full-dotnet/existing-db) |
117117
| &nbsp; | <br /> |
118118

119119
EF and related technologies are powerful, and are a lot to learn for the developer who wants to master the entire area.
@@ -135,8 +135,8 @@ Microsoft provides a Java Database Connectivity (JDBC) driver for use with SQL S
135135
| [Code examples](./jdbc/code-samples/index.md) | Code examples that teach about data types, result sets, and large data. |
136136
| [Connection URL Sample](./jdbc/connection-url-sample.md) | Describes how to use a connection URL to connect to SQL Server. Then use it to use an SQL statement to retrieve data. |
137137
| [Data Source Sample](./jdbc/data-source-sample.md) | Describes how to use a data source to connect to SQL Server. Then use a stored procedure to retrieve data. |
138-
| [Use Java to query an Azure SQL database](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-java) | Azure SQL Database example. |
139-
| [Create Java apps using SQL Server on Ubuntu](http://www.microsoft.com/sql-server/developer-get-started/java/ubuntu/) | Configuration information, along with code examples. |
138+
| [Use Java to query an Azure SQL database](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-java) | Azure SQL Database example. |
139+
| [Create Java apps using SQL Server on Ubuntu](https://www.microsoft.com/sql-server/developer-get-started/java/ubuntu/) | Configuration information, along with code examples. |
140140
| &nbsp; | <br /> |
141141

142142
#### Documentation
@@ -158,15 +158,15 @@ The JDBC documentation includes the following major areas:
158158

159159
With Node.js you can connect to SQL Server from Windows, Linux, or Mac. The root of our Node.js documentation is [here](./node-js/index.md).
160160

161-
The Node.js connection driver for SQL Server is implemented in JavaScript. The driver uses the TDS protocol, which is supported by all modern versions of SQL Server. The driver is an open source project, [available on Github](http://tediousjs.github.io/tedious/).
161+
The Node.js connection driver for SQL Server is implemented in JavaScript. The driver uses the TDS protocol, which is supported by all modern versions of SQL Server. The driver is an open source project, [available on Github](https://tediousjs.github.io/tedious/).
162162

163163
#### Code examples
164164

165165
|||
166166
| :-- | :-- |
167167
| [Proof of concept connecting to SQL using Node.js](./node-js/step-3-proof-of-concept-connecting-to-sql-using-node-js.md) | Bare bones source code for connecting to SQL Server, and executing a query. |
168-
| [Azure SQL database: Use Node.js to query](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-nodejs) | Example for Azure SQL Database in the cloud. |
169-
| [Create Node.js apps to use SQL Server on macOS](http://www.microsoft.com/sql-server/developer-get-started/node/mac/) | Configuration information, along with code examples. |
168+
| [Azure SQL database: Use Node.js to query](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-nodejs) | Example for Azure SQL Database in the cloud. |
169+
| [Create Node.js apps to use SQL Server on macOS](https://www.microsoft.com/sql-server/developer-get-started/node/mac/) | Configuration information, along with code examples. |
170170
| &nbsp; | <br /> |
171171

172172

@@ -221,8 +221,8 @@ You can use PHP to interact with SQL Server. The root of our PHP documentation i
221221
| :-- | :-- |
222222
| [Proof of concept connecting to SQL using PHP](./php/step-3-proof-of-concept-connecting-to-sql-using-php.md) | A small code example focused on connecting and querying SQL Server. |
223223
| [Connect resiliently to SQL with PHP](./php/step-4-connect-resiliently-to-sql-with-php.md) | Retry logic in a code example, because connections through the Internet and the cloud can occasionally experience moments of connectivity loss. |
224-
| [Azure SQL database: Use PHP to query](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-php) | Azure SQL Database example. |
225-
| [Create PHP apps to use SQL Server on RHEL](http://www.microsoft.com/sql-server/developer-get-started/php/rhel/) | Configuration information, along with code examples. |
224+
| [Azure SQL database: Use PHP to query](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-php) | Azure SQL Database example. |
225+
| [Create PHP apps to use SQL Server on RHEL](https://www.microsoft.com/sql-server/developer-get-started/php/rhel/) | Configuration information, along with code examples. |
226226
| &nbsp; | <br /> |
227227

228228

@@ -239,8 +239,8 @@ You can use Python to interact with SQL Server.
239239
|||
240240
| :-- | :-- |
241241
| [Proof of concept connecting to SQL with Python using pyodbc](./python/pyodbc/step-3-proof-of-concept-connecting-to-sql-using-pyodbc.md) | A small code example focused on connecting and querying SQL Server. |
242-
| [Azure SQL database: Use Python to query](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-python) | Azure SQL Database example. |
243-
| [Create PHP apps to use SQL Server on SLES](http://www.microsoft.com/sql-server/developer-get-started/python/sles/) | Configuration information, along with code examples. |
242+
| [Azure SQL database: Use Python to query](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-python) | Azure SQL Database example. |
243+
| [Create PHP apps to use SQL Server on SLES](https://www.microsoft.com/sql-server/developer-get-started/python/sles/) | Configuration information, along with code examples. |
244244
| &nbsp; | <br /> |
245245

246246
#### Documentation
@@ -264,15 +264,15 @@ You can use Ruby to interact with SQL Server. The root of our Ruby documentation
264264
|||
265265
| :-- | :-- |
266266
| [Proof of concept connecting to SQL with Ruby](./ruby/step-3-proof-of-concept-connecting-to-sql-using-ruby.md) | A small code example focused on connecting and querying SQL Server. |
267-
| [Azure SQL database: Use Ruby to query](http://docs.microsoft.com/azure/sql-database/sql-database-connect-query-ruby) | Azure SQL Database example. |
268-
| [Create Ruby apps to use SQL Server on MacOS](http://www.microsoft.com/sql-server/developer-get-started/ruby/mac/) | Configuration information, along with code examples. |
267+
| [Azure SQL database: Use Ruby to query](https://docs.microsoft.com/azure/sql-database/sql-database-connect-query-ruby) | Azure SQL Database example. |
268+
| [Create Ruby apps to use SQL Server on MacOS](https://www.microsoft.com/sql-server/developer-get-started/ruby/mac/) | Configuration information, along with code examples. |
269269
| &nbsp; | <br /> |
270270

271271

272272

273273
<a name="an-204-aka-ms-sqldev" />
274274

275-
## [Build-an-app website, for SQL client development](http://www.microsoft.com/sql-server/developer-get-started/)
275+
## [Build-an-app website, for SQL client development](https://www.microsoft.com/sql-server/developer-get-started/)
276276

277277

278278
On our [*Build-an-app*](https://www.microsoft.com/sql-server/developer-get-started/) webpages you can choose from a long list of programming languages for connecting to SQL Server. And your client program can run a variety of operating systems.
@@ -340,16 +340,16 @@ This section provides links about other development options. These include using
340340

341341
#### Developer hub for Azure
342342

343-
- [Developer hub for Azure](http://docs.microsoft.com/azure/)
344-
- [Azure for .NET developers](http://docs.microsoft.com/dotnet/azure/)
345-
- [Azure for Java developers](http://docs.microsoft.com/java/azure/)
346-
- [Azure for Node.js developers](http://docs.microsoft.com/nodejs/azure/)
347-
- [Azure for Python developers](http://docs.microsoft.com/python/azure/)
348-
- [Create a PHP web app in Azure](http://docs.microsoft.com/azure/app-service-web/app-service-web-get-started-php)
343+
- [Developer hub for Azure](https://docs.microsoft.com/azure/)
344+
- [Azure for .NET developers](https://docs.microsoft.com/dotnet/azure/)
345+
- [Azure for Java developers](https://docs.microsoft.com/java/azure/)
346+
- [Azure for Node.js developers](https://docs.microsoft.com/nodejs/azure/)
347+
- [Azure for Python developers](https://docs.microsoft.com/python/azure/)
348+
- [Create a PHP web app in Azure](https://docs.microsoft.com/azure/app-service-web/app-service-web-get-started-php)
349349

350350
#### Other languages
351351

352-
- [Create Go apps using SQL Server on Windows](http://www.microsoft.com/sql-server/developer-get-started/go/windows/)
352+
- [Create Go apps using SQL Server on Windows](https://www.microsoft.com/sql-server/developer-get-started/go/windows/)
353353

354354

355355

0 commit comments

Comments
 (0)