1 7 8 package javax.sql; 9 10 import java.sql.*; 11 12 28 29 public interface RowSetMetaData extends ResultSetMetaData { 30 31 38 void setColumnCount(int columnCount) throws SQLException; 39 40 51 void setAutoIncrement(int columnIndex, boolean property) throws SQLException; 52 53 63 void setCaseSensitive(int columnIndex, boolean property) throws SQLException; 64 65 75 void setSearchable(int columnIndex, boolean property) throws SQLException; 76 77 87 void setCurrency(int columnIndex, boolean property) throws SQLException; 88 89 102 void setNullable(int columnIndex, int property) throws SQLException; 103 104 114 void setSigned(int columnIndex, boolean property) throws SQLException; 115 116 126 void setColumnDisplaySize(int columnIndex, int size) throws SQLException; 127 128 136 void setColumnLabel(int columnIndex, String label) throws SQLException; 137 138 145 void setColumnName(int columnIndex, String columnName) throws SQLException; 146 147 155 void setSchemaName(int columnIndex, String schemaName) throws SQLException; 156 157 165 void setPrecision(int columnIndex, int precision) throws SQLException; 166 167 175 void setScale(int columnIndex, int scale) throws SQLException; 176 177 185 void setTableName(int columnIndex, String tableName) throws SQLException; 186 187 195 void setCatalogName(int columnIndex, String catalogName) throws SQLException; 196 197 205 void setColumnType(int columnIndex, int SQLType) throws SQLException; 206 207 215 void setColumnTypeName(int columnIndex, String typeName) throws SQLException; 216 217 } 218 219 220 221 222 223 | Popular Tags |