Skip to content

Commit 0896170

Browse files
authored
Merge pull request #27275 from MicrosoftDocs/FromPublicRepo
Resolve syncing conflicts from FromPublicRepo to main
2 parents b386632 + 845baa9 commit 0896170

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/connect/php/installation-tutorial-linux-mac.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ apt-get install php8.1 php8.1-dev php8.1-xml -y --allow-unauthenticated
4444

4545
Install the ODBC driver for Ubuntu by following the instructions on the [Install the Microsoft ODBC driver for SQL Server (Linux)](../../connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server.md). Make sure to also install the `unixodbc-dev` package. It's used by the `pecl` command to install the PHP drivers.
4646

47+
```bash
48+
sudo apt-get install unixodbc-dev
49+
```
50+
4751
### Step 3. Install the PHP drivers for Microsoft SQL Server (Ubuntu)
4852

4953
```bash

docs/linux/includes/quickstart-connect-query.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ Next create a new table, `dbo.Inventory`, and insert two new rows.
6666

6767
```sql
6868
CREATE TABLE dbo.Inventory (
69-
id INT, name NVARCHAR(50),
70-
quantity INT
69+
id INT,
70+
name NVARCHAR(50),
71+
quantity INT,
72+
PRIMARY KEY (id)
7173
);
7274
```
7375

docs/t-sql/functions/string-escape-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ STRING_ESCAPE( text , type )
3434
## Arguments
3535

3636
*text*
37-
Is a **nvarchar**[expression](../../t-sql/language-elements/expressions-transact-sql.md) expression representing the object that should be escaped.
37+
Is a **nvarchar** [expression](../../t-sql/language-elements/expressions-transact-sql.md) representing the object that should be escaped.
3838

3939
*type*
4040
Escaping rules that will be applied. Currently the value supported is `'json'`.

0 commit comments

Comments
 (0)