I recently wrote about Emacs 29's new sqlite-mode, which enables you to browse sqlite databases from your beloved editor. Out of the box, it supports the following browsing features: sqlite-mode-list-data: List the data from the table under point. sqlite-mode-list-column: List the columns of the table under point. sqlite-mode-list-tables: Re-list the tables from the currently selected database. On the editing side of things it supports row deletion: sqlite-mode-delete: Delete the row under po...