diff --git a/docs/img/tutorial/sql-databases/image02.png b/docs/img/tutorial/sql-databases/image02.png new file mode 100644 index 000000000..ee59fc939 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 f3f0b3e4a..11d039a03 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 1103af48b..d82772a70 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: + +