Sponsored Link •
|
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:
it's a typographical mistake.. u should declare array in [] brackets and not as ()... check ur code and change that line.. bye for now > 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
|