Skip to content

Commit

Permalink
doc: add example config with query parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Van Leuven Wim (100) committed Jun 29, 2024
1 parent e505ace commit 675f835
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions doc/user-guide/connection-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,19 @@ port = 5432
database = db
```

Or, to connect to an Oracle database, which might require some query parameters:

```ini
[ora]
drivername = oracle+oracledb
username = myuser
password = mypass
host = my_oracle_server.example.com
port = 1521
database = my_oracle_pdb.example.com
query = {"servicename": "my_oracle_db.example.com"}
```

```{code-cell} ipython3
from pathlib import Path
Expand Down

0 comments on commit 675f835

Please sign in to comment.