emacs-edbi icon indicating copy to clipboard operation
emacs-edbi copied to clipboard

Database Interface for Emacs Lisp

Results 20 emacs-edbi issues
Sort by recently updated
recently updated
newest added

It would be good to be able to export the query results to e.g. JSON or CSV. Just copy/pasting the results buffer and then manipulating it is not enough, since...

The `edbi:open-db-viewer` history feature is great. However, there are several databases that I connect to regularly that have very similar connection strings, so it takes me a moment to figure...

Would prefer to not install system wide, its appears by default `edbi:open-db-viewer` does't check local::lib installs based on the following error ```bash Connection Error : (error Server may raise an...

[emacs-sqlite3-api](https://github.com/pekingduck/emacs-sqlite3-api) has the [sqlite3-column-*](https://github.com/pekingduck/emacs-sqlite3-api#-sqlite3-column-) functions for retrieving the results of a row. Does your package have functions which can be used in this manner?

I have a table names 'foo-bar' and edbi fails to display it with ``` Error: near "-": syntax error ``` From the commandline, a ```sh $ sqlite3 database.db "SELECT *...

Are there any options in emacs-edbi to allow changing the colors of the selected row? In the attached screenshot, the current row is unreadable. I've tried a few different dark...

Hi. Thanks in advance for the nice tool. I'm using it with sqlite, but find I cannot open a sqlite file in wal mode (see the attached T07_endToEnd_NestedDirectories.db file with...

I love edbi, it simplifies a lot to simply view the database. I wonder is there a way to make such viewing for other db types - specifically mongoDB or...

This patch is required for edbi to work with my Amazon Redshift cluster. The table info extraction function doesn't work without it. Someone did the legwork to investigate how various...

Some people (like me) don't use auto-complete, we use `company-mode` instead. I hope you can refactor edbi to use `completion-at-point-functions` (which is used by Emacs default, and supported by company-mode)....