You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe you are using a newer version of clojure/java.jdbc that is not compatible with the latest release of Korma. Check the README how to pin it to a version that works with Korma.
I'm trying to do simple queries like select or insert.. It is a mysql database.
When I try to do something simple like a select * from users
(select users)
I get:
ArityException Wrong number of args (4) passed to: jdbc/query clojure.lang.AFn.throwArity (AFn.java:429)
dry run :: SELECT
users
.id
,users
.username
,users
.password
,users
.first_name
,users
.last_name
,users
.title
FROMusers
:: []Why does ::[] get generated I believe this is causing the issue.
The text was updated successfully, but these errors were encountered: