* Update <ahref="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 <ahref="https://fastapi.tiangolo.com/tutorial/sql-databases/"target="_blank">docs for SQLAlchemy</a>: <ahref="https://github.com/tiangolo/fastapi/pull/30"target="_blank">#30</a>
@ -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 <ahref="https://sqlitebrowser.org/"target="_blank">DB Browser for SQLite</a>.