From: Sebastián Ramírez Date: Tue, 12 Feb 2019 19:31:18 +0000 (+0400) Subject: :memo: Add note about DB Browser for SQLite in SQL docs X-Git-Tag: 0.4.0~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=890f1f7899835c2afc1f3432fb58c053d4313aae;p=thirdparty%2Ffastapi%2Ffastapi.git :memo: Add note about DB Browser for SQLite in SQL docs --- diff --git a/docs/img/tutorial/sql-databases/image02.png b/docs/img/tutorial/sql-databases/image02.png new file mode 100644 index 0000000000..ee59fc9398 Binary files /dev/null and b/docs/img/tutorial/sql-databases/image02.png differ diff --git a/docs/release-notes.md b/docs/release-notes.md index f3f0b3e4a5..11d039a036 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,3 +1,7 @@ +## Next + +* Update docs/tutorial for SQLAlchemy including note about *DB Browser for SQLite*. + ## 0.3.0 * Fix/add SQLAlchemy support, including ORM, and update docs for SQLAlchemy: #30 diff --git a/docs/tutorial/sql-databases.md b/docs/tutorial/sql-databases.md index 1103af48ba..d82772a70a 100644 --- a/docs/tutorial/sql-databases.md +++ b/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 } ``` + +## 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 DB Browser for SQLite. + +It will look like this: + +