1 7 8 package java.sql; 9 10 26 27 public interface ResultSetMetaData { 28 29 35 int getColumnCount() throws SQLException ; 36 37 44 boolean isAutoIncrement(int column) throws SQLException ; 45 46 53 boolean isCaseSensitive(int column) throws SQLException ; 54 55 62 boolean isSearchable(int column) throws SQLException ; 63 64 71 boolean isCurrency(int column) throws SQLException ; 72 73 81 int isNullable(int column) throws SQLException ; 82 83 87 int columnNoNulls = 0; 88 89 93 int columnNullable = 1; 94 95 99 int columnNullableUnknown = 2; 100 101 108 boolean isSigned(int column) throws SQLException ; 109 110 118 int getColumnDisplaySize(int column) throws SQLException ; 119 120 128 String getColumnLabel(int column) throws SQLException ; 129 130 137 String getColumnName(int column) throws SQLException ; 138 139 146 String getSchemaName(int column) throws SQLException ; 147 148 155 int getPrecision(int column) throws SQLException ; 156 157 164 int getScale(int column) throws SQLException ; 165 166 173 String getTableName(int column) throws SQLException ; 174 175 183 String getCatalogName(int column) throws SQLException ; 184 185 193 int getColumnType(int column) throws SQLException ; 194 195 203 String getColumnTypeName(int column) throws SQLException ; 204 205 212 boolean isReadOnly(int column) throws SQLException ; 213 214 221 boolean isWritable(int column) throws SQLException ; 222 223 230 boolean isDefinitelyWritable(int column) throws SQLException ; 231 232 234 249 String getColumnClassName(int column) throws SQLException ; 250 } 251 | Popular Tags |