Example usage for Java javax.sql RowSetMetaData fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getColumnCount() Returns the number of columns in this ResultSet object. |
void | setColumnCount(int columnCount) Sets the number of columns in the RowSet object to the given number. |
void | setColumnName(int columnIndex, String columnName) Sets the name of the designated column to the given String . |
void | setColumnType(int columnIndex, int SQLType) Sets the designated column's SQL type to the one given. |
void | setTableName(int columnIndex, String tableName) Sets the designated column's table name, if any, to the given String . |