Java javax.sql RowSetMetaData fields, constructors, methods, implement or subclass

Example usage for Java javax.sql RowSetMetaData fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.sql RowSetMetaData.

The text is from its open source code.

Method

intgetColumnCount()
Returns the number of columns in this ResultSet object.
voidsetColumnCount(int columnCount)
Sets the number of columns in the RowSet object to the given number.
voidsetColumnName(int columnIndex, String columnName)
Sets the name of the designated column to the given String.
voidsetColumnType(int columnIndex, int SQLType)
Sets the designated column's SQL type to the one given.
voidsetTableName(int columnIndex, String tableName)
Sets the designated column's table name, if any, to the given String.