Skip to content

Commit d2f6816

Browse files
Addressed blocking and non-blocking issues
1 parent 33852a1 commit d2f6816

43 files changed

Lines changed: 62 additions & 51 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/connect/php/about-code-examples-in-the-documentation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "About Code Examples in the Documentation | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "03/23/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""
@@ -22,6 +22,7 @@ ms.workload: "Inactive"
2222
# About Code Examples in the Documentation
2323
[!INCLUDE[Driver_PHP_Download](../../includes/driver_php_download.md)]
2424

25+
## Remarks about the code examples
2526
There are several points to note when you execute the code examples in the [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] documentation:
2627

2728
- Nearly all the examples assume that SQL Server 2008 or later and the AdventureWorks database are installed on the local computer.

docs/connect/php/code-samples-for-php-sql-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Code Samples for the Microsoft Drivers for PHP for SQL Server | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/comparing-execution-functions.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Comparing Execution Functions | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""
@@ -25,9 +25,11 @@ ms.workload: "Inactive"
2525
[!INCLUDE[Driver_PHP_Download](../../includes/driver_php_download.md)]
2626

2727
The [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)] provides several options for executing functions.
28-
28+
29+
## SQLSRV Execution Functions
2930
If you are using the SQLSRV driver, use [sqlsrv_query](../../connect/php/sqlsrv-query.md) to execute a single query and [sqlsrv_prepare](../../connect/php/sqlsrv-prepare.md) with [sqlsrv_execute](../../connect/php/sqlsrv-execute.md) to execute a prepared statement multiple times with different parameter values for each execution.
30-
31+
32+
## PDO_SQLSRV Execution Functions
3133
If you are using the PDO_SQLSRV driver, you can execute a query with one of the following:
3234

3335
- [PDO::exec](../../connect/php/pdo-exec.md)

docs/connect/php/configuring-iis-for-php-sql-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Configuring IIS for the Microsoft Drivers for PHP for SQL Server | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/connecting-to-the-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Connecting to the Server | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/connection-options.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Connection Options | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""
@@ -24,6 +24,7 @@ ms.workload: "On Demand"
2424

2525
This topic lists the options that are permitted in the associative array (when using [sqlsrv_connect](../../connect/php/sqlsrv-connect.md) in the SQLSRV driver) or the keywords that are permitted in the data source name (dsn) (when using [PDO::__construct](../../connect/php/pdo-construct.md) in the PDO_SQLSRV driver).
2626

27+
## Table of Connection Options
2728
|Key|Value|Description|Default|
2829
|-------|---------|---------------|-----------|
2930
|APP|String|Specifies the application name used in tracing.|No value set.|

docs/connect/php/converting-data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Converting Data Types | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/direct-statement-execution-prepared-statement-execution-pdo-sqlsrv-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Direct Statement - Prepared Statement Execution PDO_SQLSRV Driver | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/example-application-pdo-sqlsrv-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Example Application (PDO_SQLSRV Driver) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

docs/connect/php/example-application-sqlsrv-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Example Application (SQLSRV Driver) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "02/16/2018"
4+
ms.date: "03/26/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "drivers"
77
ms.service: ""

0 commit comments

Comments
 (0)