ejc-sql
ejc-sql copied to clipboard
Emacs SQL client uses Clojure JDBC.
fix issue https://github.com/kostafey/ejc-sql/issues/148
In: ``` (defun direx-ejc:-goto-item (item) (cl-destructuring-bind (&key line_nr column &allow-other-keys) (car (oref (direx:item-tree item) :cache)) (ejc:goto--line-column line_nr column))) ``` There is no `ejc:goto--line-column` defined.
I'm getting this error with Emacs 28 with native compilation turned on, so maybe it's related to that. I just get that when trying to connect to a database with...
With ejc-candidates-uppercase set to nil, ejc-get-keywords throws "Symbol's function definition is void: lowercase". Use the downcase function instead.
Sometimes I want to test a query on my dataset, and rollback after inspecting its results. Unfortunately, the following query when executed with `ejc-sql`, does not rollback the transaction. Could...
After connecting to PostgreSQL database, I can execute select statements, but any update statement produce error: ``` Error: This ResultSet is closed. ``` My configuration: ```emacs-lisp (use-package ejc-sql :config (ejc-set-rows-limit...
I get the following error when trying to connect to a Redshift DB; ``` condition-case: Wrong type argument: stringp, ("ELisp" (lexical-binding (:propertize "/l" help-echo "Using lexical-binding mode") (:propertize "/d" help-echo...
Please let `DESCRIBE-TABLE` show comment about the fields. name | type | comment --------+--------+---------------- id | BIGINT | just id with uuid
After compiling Emacs from master, I got an error in my init file loading direx.el. d65534d254 master * lisp/emacs-list/eieio-compat.el: Really move to obsolete The database tree view did not work...
When executing this snippet: ``` #+begin_src sql declare @test varchar(100) set @test = 'abc' select @test #+end_src ``` I get this error: ``` #+RESULTS: : Error: A result set was...