Lines Matching defs:column

33  * to find out how many columns rs has and whether the first column in rs
56 * Indicates whether the designated column is automatically numbered.
58 * @param column the first column is 1, the second is 2, ...
62 boolean isAutoIncrement(int column) throws SQLException;
65 * Indicates whether a column's case matters.
67 * @param column the first column is 1, the second is 2, ...
71 boolean isCaseSensitive(int column) throws SQLException;
74 * Indicates whether the designated column can be used in a where clause.
76 * @param column the first column is 1, the second is 2, ...
80 boolean isSearchable(int column) throws SQLException;
83 * Indicates whether the designated column is a cash value.
85 * @param column the first column is 1, the second is 2, ...
89 boolean isCurrency(int column) throws SQLException;
92 * Indicates the nullability of values in the designated column.
94 * @param column the first column is 1, the second is 2, ...
95 * @return the nullability status of the given column; one of <code>columnNoNulls</code>,
99 int isNullable(int column) throws SQLException;
103 * column does not allow <code>NULL</code> values.
109 * column allows <code>NULL</code> values.
115 * nullability of a column's values is unknown.
120 * Indicates whether values in the designated column are signed numbers.
122 * @param column the first column is 1, the second is 2, ...
126 boolean isSigned(int column) throws SQLException;
129 * Indicates the designated column's normal maximum width in characters.
131 * @param column the first column is 1, the second is 2, ...
133 * of the designated column
136 int getColumnDisplaySize(int column) throws SQLException;
139 * Gets the designated column's suggested title for use in printouts and
145 * @param column the first column is 1, the second is 2, ...
146 * @return the suggested column title
149 String getColumnLabel(int column) throws SQLException;
152 * Get the designated column's name.
154 * @param column the first column is 1, the second is 2, ...
155 * @return column name
158 String getColumnName(int column) throws SQLException;
161 * Get the designated column's table's schema.
163 * @param column the first column is 1, the second is 2, ...
167 String getSchemaName(int column) throws SQLException;
170 * Get the designated column's specified column size.
175 * column size is not applicable.
177 * @param column the first column is 1, the second is 2, ...
181 int getPrecision(int column) throws SQLException;
184 * Gets the designated column's number of digits to right of the decimal point.
187 * @param column the first column is 1, the second is 2, ...
191 int getScale(int column) throws SQLException;
194 * Gets the designated column's table name.
196 * @param column the first column is 1, the second is 2, ...
200 String getTableName(int column) throws SQLException;
203 * Gets the designated column's table's catalog name.
205 * @param column the first column is 1, the second is 2, ...
206 * @return the name of the catalog for the table in which the given column
210 String getCatalogName(int column) throws SQLException;
213 * Retrieves the designated column's SQL type.
215 * @param column the first column is 1, the second is 2, ...
220 int getColumnType(int column) throws SQLException;
223 * Retrieves the designated column's database-specific type name.
225 * @param column the first column is 1, the second is 2, ...
226 * @return type name used by the database. If the column type is
230 String getColumnTypeName(int column) throws SQLException;
233 * Indicates whether the designated column is definitely not writable.
235 * @param column the first column is 1, the second is 2, ...
239 boolean isReadOnly(int column) throws SQLException;
242 * Indicates whether it is possible for a write on the designated column to succeed.
244 * @param column the first column is 1, the second is 2, ...
248 boolean isWritable(int column) throws SQLException;
251 * Indicates whether a write on the designated column will definitely succeed.
253 * @param column the first column is 1, the second is 2, ...
257 boolean isDefinitelyWritable(int column) throws SQLException;
265 * from the column. <code>ResultSet.getObject</code> may return a subclass of the
268 * @param column the first column is 1, the second is 2, ...
272 * column. This is the class name used for custom mapping.
276 String getColumnClassName(int column) throws SQLException;