This simple tool allows you to query, browse, and modify SQLite databases.
You can enter SQL queries and see the results in a table.
You can browse each table in the database, optionally filtering the results.
You can browse individual records within each table.
Note: if you modify your SQLite database, for example via
insert
,update
, ordelete
statements, then the results are saved to the database immediately. There is no undo or rollback. If you use onlyselect
statements, or the browser tabs (Tables and Records) then your database will not be modified.
Via visual studio solution (2019)
Made with the excellent Dear ImGui (MIT License), and SQLite (Public Domain). The sample database is from the amazing SQL Murder Mystery (MIT License).