Difference between revisions of "Edbi"

From WikEmacs
Jump to navigation Jump to search
(edbi DB tool)
(No difference)

Revision as of 13:21, 30 May 2018

edbi
Description Database Interface for Emacs Lisp
Author kiwanami
Maintainer kiwanami
Source https://github.com/kiwanami/emacs-edbi/
Part of Emacs no

edbi is a database interface. It connects to a database server through Perl's DBI, and provides DB-accessing API and a simple management UI.

Installation

Edbi is on Melpa, but we must also install Perl packages, namely


   RPC::EPC::Service
   DBI
   DBD::SQLite
   DBD::Pg
   DBD::mysql

You can install each module like this:

   cpan install DBD::SQLite 

which would install SQLite support for EDBI.

Usage

Start edbi with M-x edbi:open-db-viewer RET.

Sqlite

There is an edbi-sqlite package to ease things for sqlite.


External links