Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is there an emacs interface to a relational database?

I need to enter many text fields in this database and was looking to enter them through a form like you might create in MS Access or Open/LibreOffice's Database. Is there such a template-generating package for emacs that would talk to one of such databases (or possibly SQLite)?

like image 255
hatmatrix Avatar asked Nov 04 '22 12:11

hatmatrix


1 Answers

There is emacs widget. For example: http://www.xemacs.org/Documentation/beta/html/widget_3.html. Here is the user interface. http://www.xemacs.org/Documentation/beta/html/widget_2.html#SEC2. This also works with gnu-emacs. You might want to write some code that it can insert the data in your database, via SQL. Also look at http://www.emacswiki.org/emacs/sql-transform.el. I personally would like to have insert the data via org-mode tables.

like image 100
aartist Avatar answered Nov 09 '22 12:11

aartist