sql

2025-04-23T15:02:54.202739Z

Anyone have any experience with clickhouse from clojure? Do you use the JDBC driver or the clickhouse java client? I don't have any super specific question just wondering if anyone has any general advice. My initial experiments using its JDBC driver from clojure are with next.jdbc are going well, but i think does make some of the clickhouse features I think I'm going to want (like inserting data directly from a csv) impossible.

seancorfield 2025-04-23T15:13:16.905349Z

I've run across a few ClickHouse users for HoneySQL and next.jdbc so my impression is they're mostly using the JDBC driver. I suspect you could do those additional things via Java interop as needed (with the Java client) but mostly use JDBC?

2025-04-23T15:21:51.187139Z

Yeah that seems sensible thanks