How can I get a BINARY(16) column from mariadb as a byte array?
(.getColumnClassName rs-meta 2) ;; => "java.lang.String"
seems this happens in the driver(alength (.getBytes (.getObject rs 2))) ;; 34
(alength (.getBytes rs 2)) ;; 16
Okay, so calling .getBytes on the result-set would fix this. Why is it 34 bytes in the first case? encoding?https://cljdoc.org/d/com.github.seancorfield/next.jdbc/1.3.909/doc/getting-started/tips-tricks#sqlite documented what I need 👍
Isn't JDBC wonderful? /sarcasm