# Async SQL (Relational) Databases with Encode/Databases
# ~~Async SQL (Relational) Databases with Encode/Databases~~ (deprecated)
!!! info
These docs are about to be updated. 🎉
@ -7,6 +7,9 @@
The new docs will include Pydantic v2 and will use <ahref="https://sqlmodel.tiangolo.com/"class="external-link"target="_blank">SQLModel</a> once it is updated to use Pydantic v2 as well.
!!! warning "Deprecated"
This tutorial is deprecated and will be removed in a future version.
You can also use <ahref="https://github.com/encode/databases"class="external-link"target="_blank">`encode/databases`</a> with **FastAPI** to connect to databases using `async` and `await`.
# NoSQL (Distributed / Big Data) Databases with Couchbase
# ~~NoSQL (Distributed / Big Data) Databases with Couchbase~~ (deprecated)
!!! info
These docs are about to be updated. 🎉
@ -7,6 +7,9 @@
The new docs will hopefully use Pydantic v2 and will use <ahref="https://art049.github.io/odmantic/"class="external-link"target="_blank">ODMantic</a> with MongoDB.
!!! warning "Deprecated"
This tutorial is deprecated and will be removed in a future version.
**FastAPI** can also be integrated with any <abbrtitle="Distributed database (Big Data), also 'Not Only SQL'">NoSQL</abbr>.
Here we'll see an example using **<ahref="https://www.couchbase.com/"class="external-link"target="_blank">Couchbase</a>**, a <abbrtitle="Document here refers to a JSON object (a dict), with keys and values, and those values can also be other JSON objects, arrays (lists), numbers, strings, booleans, etc.">document</abbr> based NoSQL database.
# ~~SQL (Relational) Databases with Peewee~~ (deprecated)
!!! warning "Deprecated"
This tutorial is deprecated and will be removed in a future version.
!!! warning
If you are just starting, the tutorial [SQL (Relational) Databases](../tutorial/sql-databases.md){.internal-link target=_blank} that uses SQLAlchemy should be enough.