From 604fea9fc15f577de3c3a28e4797d850f101f37a Mon Sep 17 00:00:00 2001 From: s2s Date: Mon, 3 Aug 2020 12:37:02 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20link=20in=20sql-databases.?= =?UTF-8?q?md=20tutorial=20to=20async-sql-databases.md=20in=20advanced=20s?= =?UTF-8?q?ection.=20(#1813)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add link in sql-databases.md tutorial section to async-sql-databases.md in advanced section. * 🎨 Update note format Co-authored-by: Sebastián Ramírez --- docs/en/docs/tutorial/sql-databases.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/en/docs/tutorial/sql-databases.md b/docs/en/docs/tutorial/sql-databases.md index c60eda0f8..a3f7fae05 100644 --- a/docs/en/docs/tutorial/sql-databases.md +++ b/docs/en/docs/tutorial/sql-databases.md @@ -539,6 +539,9 @@ def read_user(user_id: int, db: Session = Depends(get_db)): ... ``` +!!! info + If you need to connect to your relational database asynchronously, see [Async SQL (Relational) Databases](../advanced/async-sql-databases.md){.internal-link target=_blank}. + !!! note "Very Technical Details" If you are curious and have a deep technical knowledge, you can check the very technical details of how this `async def` vs `def` is handled in the [Async](../async.md#very-technical-details){.internal-link target=_blank} docs.