KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sql > RowSetMetaData

javax.sql
Interface RowSetMetaData

All Superinterfaces:
ResultSetMetaData
All Known Implementing Classes:
RowSetMetaDataImpl
See Also:
Source Code

void setAutoIncrement(int columnIndex,
                      boolean property)
                      throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setCaseSensitive(int columnIndex,
                      boolean property)
                      throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setCatalogName(int columnIndex,
                    String catalogName)
                    throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnCount(int columnCount)
                    throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnDisplaySize(int columnIndex,
                          int size)
                          throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnLabel(int columnIndex,
                    String label)
                    throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnName(int columnIndex,
                   String columnName)
                   throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnType(int columnIndex,
                   int SQLType)
                   throws SQLException
See Also:
Types
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setColumnTypeName(int columnIndex,
                       String typeName)
                       throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setCurrency(int columnIndex,
                 boolean property)
                 throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setNullable(int columnIndex,
                 int property)
                 throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setPrecision(int columnIndex,
                  int precision)
                  throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setScale(int columnIndex,
              int scale)
              throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setSchemaName(int columnIndex,
                   String schemaName)
                   throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setSearchable(int columnIndex,
                   boolean property)
                   throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setSigned(int columnIndex,
               boolean property)
               throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setTableName(int columnIndex,
                  String tableName)
                  throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags