The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
April 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

define as array

Posted by Siddhant Kumar on May 02, 2001 at 3:07 AM

it's a typographical mistake.. u should declare array in [] brackets and not as ()... check ur code and change that line..

bye for now
Siddhant Kumar

> I am getting an error "The type of the expression [java.util.Hashtable] must be an array type. Could someone help me with this please?

> Code:

> /** * SelectComponent constructor comment. */ public SelectComponent(Connection c, String sql) throws SQLException {

> try {

> Statement stmt= c.createStatement();

> ResultSet rs = stmt.executeQuery(sql);

> ResultSetMetaData meta = rs.getMetaData();

> meta.getColumnCount();

> records = new Hashtable(meta.getColumnCount());

> int row = 0;

> while (rs.next()) {

> row++;

> records[value] = new Hashtable();

> for (int i = 0; i < columnCount; i++) { records[i].put(row, rs.getString(i+value));

> }

> }

> setRowCount(row);

> } catch (Exception e) {

> e.printStackTrace();

> } }

> Thank you,

> Naveen






Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us