Skip to content

Commit 3599c26

Browse files
committed
add export statement to bash environment variables and roll date
1 parent 5a6b49a commit 3599c26

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/postgresql/flexible-server/connect-python.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This quickstart provides several Python code samples you can use to
44
author: agapovm
55
ms.author: maximagapov
66
ms.reviewer: maghan
7-
ms.date: 04/27/2024
7+
ms.date: 06/06/2024
88
ms.service: postgresql
99
ms.subservice: flexible-server
1010
ms.topic: quickstart
@@ -152,10 +152,10 @@ In this section, you add authentication code to your working directory and perfo
152152
### [macOS/Linux](#tab/bash)
153153

154154
```bash
155-
DBHOST=<server-name>
156-
DBNAME=<database-name>
157-
DBUSER=<username>
158-
SSLMODE=require
155+
export DBHOST=<server-name>
156+
export DBNAME=<database-name>
157+
export DBUSER=<username>
158+
export SSLMODE=require
159159
```
160160

161161
---
@@ -220,11 +220,11 @@ In this section, you add authentication code to your working directory and perfo
220220
### [macOS/Linux](#tab/bash)
221221

222222
```bash
223-
DBHOST=<server-name>
224-
DBNAME=<database-name>
225-
DBUSER=<username>
226-
DBPASSWORD=<password>
227-
SSLMODE=require
223+
export DBHOST=<server-name>
224+
export DBNAME=<database-name>
225+
export DBUSER=<username>
226+
export DBPASSWORD=<password>
227+
export SSLMODE=require
228228
```
229229

230230
---

0 commit comments

Comments
 (0)