Re: [GENERAL] Fwd: JDBC Array double precision [] error

2013-03-31 Thread Juan Pablo Cook
Hi Hannes... Thanks a lot for your help! I was stuck being many many hours trying and googling it the problem but didn't realize that. This: *Double[] array = (Double[]) rs1.getArray("histograma").get**Array();* solve my problem! Thanks again!! Juan Cook On Sun, Mar 31, 2013 at 7:38 PM, Han

Re: [GENERAL] Fwd: JDBC Array double precision [] error

2013-03-31 Thread Hannes Erven
Hi Juan Pablo, > double[] array = (double[]) rs1.getArray("histograma").getArray(); java.lang.ClassCastException: [Ljava.lang.Double; cannot be cast to [D The error message already tells you the solution: use Double, not double. Like this: Double[] array = (Double[]) rs1.getArray("histogra

[GENERAL] Fwd: JDBC Array double precision [] error

2013-03-31 Thread Juan Pablo Cook
Hi everyone! I need your help with this problem. I'm using PostgreSQL 9.2 Server & the latest jdbc driver: postgresql-9.2-1002.jdbc4.jar I have a table with this column array: -- histograma double precision[] And I want to retrieve this and cast into java to double[] but I can't. This is the e