sql

fabrao 2023-10-03T23:54:32.330479Z

Hello all, I'm having this problem No implementation of method: :-execute-all of protocol: #'next.jdbc.protocols/Executable found for class: nil only when I run from Docker. Any ideas? Thank you The call is (jdbc/execute! ds query {:builder-fn rs/as-unqualified-lower-maps})

2023-10-04T00:02:03.907499Z

put (assert ds) before the call

2023-10-04T00:02:42.763999Z

that error means the protocol function -execute-all is being invoked on nil when the protocol hasn't been extended to nil

2023-10-04T00:04:21.861559Z

(assert ds) will throw a big scary exception if ds is nil, if it does that means something that happens before it the source of the nil, if it doesn't it means some internal coercion execute! might do is the source of the nil

fabrao 2023-10-04T00:05:58.094019Z

I'll try here and let you know

fabrao 2023-10-04T00:06:05.379859Z

thank u

fabrao 2023-10-04T00:29:45.496449Z

worked, I saw the problem, thank you