Hi all, I am trying to do a conversion from InputStream
to Postgres' BYTEA
- I am using clojure.java.jdbc
- would ISQLParameter
still the way to go?
@richiardiandrea Sounds right to me...
on second thought, I think I don't actually want to set this as a global conversion - by this I mean InputStream
-> BYTEA
... I might just try to use the set-parameter
and the official example also does the same https://jdbc.postgresql.org/documentation/head/binary-data.html
this does not play well with sqlvec and its params though