I’ve read a blog post called Blogging with Noir, and I was honestly surprised that the author uses java.jdbc instead of libraries like Korma which I found surprising. What are the advantages of writing SQL queries in your code instead of letting tools do it for you?
Share
I guess it is for the usual reasons that you might choose to use an API directly in Clojure rather than use a wrapper:
Ultimately it’s a trade-off – the above are reasons that you might want to use the underlying API, but there are equally good reasons that you may choose to use the wrapper: