ejc-sql
ejc-sql copied to clipboard
Emacs SQL client uses Clojure JDBC.
Persist database structure cache between connection sessions.
Add database structure visualisation tree via `direx`.
Here is a minimal working example ``` (defvar bootstrap-version) (let ((bootstrap-file (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) (bootstrap-version 5)) (unless (file-exists-p bootstrap-file) (with-current-buffer (url-retrieve-synchronously "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el" 'silent 'inhibit-cookies) (goto-char (point-max)) (eval-print-last-sexp))) (load bootstrap-file nil...
When connect to oracle database by ejc-connect, it fails frequently. Here's the message: ``` error in process filter: Sync nREPL request timed out (op eval code (require 'ejc-sql.deps-resolver) (do (set!...
This is follow-up of https://github.com/kostafey/ejc-sql/issues/141 Completions on words feels very slow. You can benchmark it with following code: ``` (require 'benchmark) (benchmark-elapse (ejc-company-candidates "se")) ``` It gives results in range...
I tried out `ejc-print-cache`, but it complains about no such function `pprint`. I'm guessing it's the `pprint` function that's in your personal config files? Perhaps it should be moved here?