Re: clojure.java.jdbc byte[] result type question

2012-06-03 Thread rossputin
Hey. Yes, thanks for your help, it was a String as a byte array. On Jun 2, 10:20 pm, Sean Corfield seancorfi...@gmail.com wrote: On Fri, Jun 1, 2012 at 5:26 AM, rossputin rossaj...@gmail.com wrote: I've got a clojure.java.jdbc result coming back as a byte[].  Its from a GROUP_CONCAT on an

clojure.java.jdbc byte[] result type question

2012-06-02 Thread rossputin
Hi. I've got a clojure.java.jdbc result coming back as a byte[]. Its from a GROUP_CONCAT on an int(10) field. In the mysql client the result is: '1,2,4,6,7,19,24,32,54,152'. I am unsure how to extract this result properly in clojure… (println (seq (somevar))) gives me an unexpected result: (49

Re: clojure.java.jdbc byte[] result type question

2012-06-02 Thread Sean Corfield
On Fri, Jun 1, 2012 at 5:26 AM, rossputin rossaj...@gmail.com wrote: I've got a clojure.java.jdbc result coming back as a byte[].  Its from a GROUP_CONCAT on an int(10) field. In the mysql client the result is: '1,2,4,6,7,19,24,32,54,152'. Looks like a string? (coming back as a byte array)