API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql. RowSetMetaData View Source
Author(s)
Since
1.4
Version
Serial
Hierarchy
 Wrapper
      ResultSetMetaData
          RowSetMetaData
Subinterfaces
Description
public interface RowSetMetaData
  An object that contains information about the columns in a RowSet object.
See also:   
Methods
Hide/Show inherited methods
public void setAutoIncrement (int columnIndex, boolean property) throws SQLException
  Sets whether the designated column is automatically numbered, The default is for a RowSet object's columns not to be automatically numbered.
public void setCaseSensitive (int columnIndex, boolean property) throws SQLException
  Sets whether the designated column is case sensitive.
public void setCatalogName (int columnIndex, String catalogName) throws SQLException
  Sets the designated column's table's catalog name, if any, to the given String.
public void setColumnCount (int columnCount) throws SQLException
  Sets the number of columns in the RowSet object to the given number.
public void setColumnDisplaySize (int columnIndex, int size) throws SQLException
  Sets the designated column's normal maximum width in chars to the given int.
public void setColumnLabel (int columnIndex, String label) throws SQLException
  Sets the suggested column title for use in printouts and displays, if any, to the given String.
public void setColumnName (int columnIndex, String columnName) throws SQLException
  Sets the name of the designated column to the given String.
public void setColumnType (int columnIndex, int SQLType) throws SQLException
  Sets the designated column's SQL type to the one given.
public void setColumnTypeName (int columnIndex, String typeName) throws SQLException
  Sets the designated column's type name that is specific to the data source, if any, to the given String.
public void setCurrency (int columnIndex, boolean property) throws SQLException
  Sets whether the designated column is a cash value.
public void setNullable (int columnIndex, int property) throws SQLException
  Sets whether the designated column's value can be set to NULL.
public void setPrecision (int columnIndex, int precision) throws SQLException
  Sets the designated column's number of decimal digits to the given int.
public void setScale (int columnIndex, int scale) throws SQLException
  Sets the designated column's number of digits to the right of the decimal point to the given int.
public void setSchemaName (int columnIndex, String schemaName) throws SQLException
  Sets the name of the designated column's table's schema, if any, to the given String.
public void setSearchable (int columnIndex, boolean property) throws SQLException
  Sets whether the designated column can be used in a where clause.
public void setSigned (int columnIndex, boolean property) throws SQLException
  Sets whether the designated column is a signed number.
public void setTableName (int columnIndex, String tableName) throws SQLException
  Sets the designated column's table name, if any, to the given String.
Fields
Hide/Show inherited fields
publicfinalstatic int columnNoNulls = "0" [Inherited From ResultSetMetaData]
The constant indicating that a column does not allow NULL values.
publicfinalstatic int columnNullable = "1" [Inherited From ResultSetMetaData]
The constant indicating that a column allows NULL values.
publicfinalstatic int columnNullableUnknown = "2" [Inherited From ResultSetMetaData]
The constant indicating that the nullability of a column's values is unknown.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar