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

Does your library have functions for reading columns directly from the sql results into elisp?

Open vonHabsi opened this issue 4 years ago • 1 comments

emacs-sqlite3-api has the sqlite3-column-* functions for retrieving the results of a row.

Does your package have functions which can be used in this manner?

vonHabsi avatar Feb 14 '20 16:02 vonHabsi

edbi just has edbi:fetch-d (retrieving rows) and edbi:fetch-columns-d (retrieving column names of result set). Example: https://github.com/kiwanami/emacs-edbi/blob/master/examples/api.el

I think this package doesn't support general purpose because of less use cases of database applications in emacs.

kiwanami avatar Feb 16 '20 12:02 kiwanami