hugsql

seancorfield 2020-06-19T00:55:04.024800Z

@somedude314 You can do that easily enough with plain ol' clojure.java.jdbc or next.jdbc

seancorfield 2020-06-19T00:55:51.025600Z

Look for find-by-keys (to get multiple rows, based on a hash map of values) or get-by-id to get a single row based on a single column's value.

adam 2020-06-19T01:03:30.026Z

Thanks @seancorfield - will look into these