hugsql

2017-05-04T15:35:24.148610Z

@bostonaholic seems like you are passing keywords as parameters to the query. you could either transform them manually before passing using (str kw) or register the type to jdbc using something like

(extend-type Keyword
	jdbc/ISQLParameter
	(set-parameter [v ^PreparedStatement stmt ^long idx]
		(.setString stmt idx (str v))))

bostonaholic 2017-05-04T15:39:20.221432Z

I’m 99% sure I’m not passing a keyword. I’m using a field that was directly pulled from the db.

bostonaholic 2017-05-04T15:59:55.596508Z

maybe the problem is b/c the field I’m pulling is the enum that I’m not casting on the way out…

bostonaholic 2017-05-04T15:59:58.597382Z

checking that now

bostonaholic 2017-05-04T16:11:10.796242Z

nope, that doesn’t seem to be it