pghstore-clj
pghstore-clj copied to clipboard
Helper functions for working with PostgresSQL hstore data type in Clojure via JDBC
Hello @blakesmith (and @citizenparker) Wow, I was so happy to find this library! I tried to use it, but ran into issues. The writes into the DB worked fine, but...
A comma in the text of an hstore value causes serious problems when reading it out of the DB. Right now pghstore-clj assumes that commas strictly denote the separations between...
Typically a double-quote is no big deal inside of a PostgreSQL string - e.g. 'Hello "World"' is a perfectly fine value and doesn't need escaping. However, when inserted into an...
Right now, to-hstore and from-hstore can only be called on non-nil values. It's a bit annoying to have to nil-check the value before calling the methods - what would you...