MySQL Forums
Forum List  »  Newbie

ResultSet.getArray not implemented ?
Posted by: Isabelle Mazain
Date: June 04, 2005 05:51AM

Hi,

I'm using Mysql 4.1.10.a, Connector J 3.2.0 alpha and java 1.5.
I'm trying to get all the result of a "SELECT" with a ResultSet.getArry. I've found the code on the net.

rs = statement.executeQuery(sql);
java.sql.Array array = rs.getArray(1);
Object tableau = array.getArray();
String[] ids = (String[]) tableau;


But it throws a SQL Exception : "Feature not implemented".

I would like to know if this error means that the method is not implementd.
Thanks for your answer.

Isabelle

Options: ReplyQuote


Subject
Written By
Posted
ResultSet.getArray not implemented ?
June 04, 2005 05:51AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.