]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:memo: Add note about DB Browser for SQLite in SQL docs
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 19:31:18 +0000 (23:31 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 12 Feb 2019 19:31:18 +0000 (23:31 +0400)
docs/img/tutorial/sql-databases/image02.png [new file with mode: 0644]
docs/release-notes.md
docs/tutorial/sql-databases.md

diff --git a/docs/img/tutorial/sql-databases/image02.png b/docs/img/tutorial/sql-databases/image02.png
new file mode 100644 (file)
index 0000000..ee59fc9
Binary files /dev/null and b/docs/img/tutorial/sql-databases/image02.png differ
index f3f0b3e4a53125168deba8bb998e9b28edd5a429..11d039a036b5f24defbd8bd437f21a0425a24148 100644 (file)
@@ -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
 
 * 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>
index 1103af48ba7f97251ab9971ed730b70cbe9e620b..d82772a70a539fdfd094a7d23502569eb2f001a0 100644 (file)
@@ -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 <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">