Browse Source

📝 Add note about DB Browser for SQLite in SQL docs

pull/34/head
Sebastián Ramírez 6 years ago
parent
commit
890f1f7899
  1. BIN
      docs/img/tutorial/sql-databases/image02.png
  2. 4
      docs/release-notes.md
  3. 8
      docs/tutorial/sql-databases.md

BIN
docs/img/tutorial/sql-databases/image02.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

4
docs/release-notes.md

@ -1,3 +1,7 @@
## Next
* Update <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/" target="_blank">docs/tutorial for SQLAlchemy</a> including note about *DB Browser for SQLite*.
## 0.3.0 ## 0.3.0
* Fix/add SQLAlchemy support, including ORM, and update <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/" target="_blank">docs for SQLAlchemy</a>: <a href="https://github.com/tiangolo/fastapi/pull/30" target="_blank">#30</a> * Fix/add SQLAlchemy support, including ORM, and update <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/" target="_blank">docs for SQLAlchemy</a>: <a href="https://github.com/tiangolo/fastapi/pull/30" target="_blank">#30</a>

8
docs/tutorial/sql-databases.md

@ -235,3 +235,11 @@ That's something that you can improve in this example application, here's the cu
"id": 1 "id": 1
} }
``` ```
## Interact with the database direclty
If you want to explore the SQLite database (file) directly, independently of FastAPI, to debug its contents, add tables, columns, records, modify data, etc. you can use <a href="https://sqlitebrowser.org/" target="_blank">DB Browser for SQLite</a>.
It will look like this:
<img src="/img/tutorial/sql-databases/image02.png">

Loading…
Cancel
Save