Lines Matching refs:columnIndex

231      * @param columnIndex the first column is 1, the second is 2, ...
234 * @exception SQLException if the columnIndex is not valid;
238 String getString(int columnIndex) throws SQLException;
252 * @param columnIndex the first column is 1, the second is 2, ...
255 * @exception SQLException if the columnIndex is not valid;
259 boolean getBoolean(int columnIndex) throws SQLException;
266 * @param columnIndex the first column is 1, the second is 2, ...
269 * @exception SQLException if the columnIndex is not valid;
273 byte getByte(int columnIndex) throws SQLException;
280 * @param columnIndex the first column is 1, the second is 2, ...
283 * @exception SQLException if the columnIndex is not valid;
287 short getShort(int columnIndex) throws SQLException;
294 * @param columnIndex the first column is 1, the second is 2, ...
297 * @exception SQLException if the columnIndex is not valid;
301 int getInt(int columnIndex) throws SQLException;
308 * @param columnIndex the first column is 1, the second is 2, ...
311 * @exception SQLException if the columnIndex is not valid;
315 long getLong(int columnIndex) throws SQLException;
322 * @param columnIndex the first column is 1, the second is 2, ...
325 * @exception SQLException if the columnIndex is not valid;
329 float getFloat(int columnIndex) throws SQLException;
336 * @param columnIndex the first column is 1, the second is 2, ...
339 * @exception SQLException if the columnIndex is not valid;
343 double getDouble(int columnIndex) throws SQLException;
350 * @param columnIndex the first column is 1, the second is 2, ...
354 * @exception SQLException if the columnIndex is not valid;
359 * @deprecated Use {@code getBigDecimal(int columnIndex)}
363 BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException;
371 * @param columnIndex the first column is 1, the second is 2, ...
374 * @exception SQLException if the columnIndex is not valid;
378 byte[] getBytes(int columnIndex) throws SQLException;
385 * @param columnIndex the first column is 1, the second is 2, ...
388 * @exception SQLException if the columnIndex is not valid;
392 java.sql.Date getDate(int columnIndex) throws SQLException;
399 * @param columnIndex the first column is 1, the second is 2, ...
402 * @exception SQLException if the columnIndex is not valid;
406 java.sql.Time getTime(int columnIndex) throws SQLException;
413 * @param columnIndex the first column is 1, the second is 2, ...
416 * @exception SQLException if the columnIndex is not valid;
420 java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException;
438 * @param columnIndex the first column is 1, the second is 2, ...
443 * @exception SQLException if the columnIndex is not valid;
447 java.io.InputStream getAsciiStream(int columnIndex) throws SQLException;
468 * @param columnIndex the first column is 1, the second is 2, ...
474 * @exception SQLException if the columnIndex is not valid;
483 java.io.InputStream getUnicodeStream(int columnIndex) throws SQLException;
499 * @param columnIndex the first column is 1, the second is 2, ...
504 * @exception SQLException if the columnIndex is not valid;
508 java.io.InputStream getBinaryStream(int columnIndex)
647 * @deprecated Use {@code getBigDecimal(int columnIndex)}
893 * if it were a call to: <code>getObject(columnIndex,
902 * @param columnIndex the first column is 1, the second is 2, ...
904 * @exception SQLException if the columnIndex is not valid;
908 Object getObject(int columnIndex) throws SQLException;
929 * if it were a call to: <code>getObject(columnIndex,
968 * @param columnIndex the first column is 1, the second is 2, ...
969 * @exception SQLException if the columnIndex is not valid;
974 java.io.Reader getCharacterStream(int columnIndex) throws SQLException;
997 * @param columnIndex the first column is 1, the second is 2, ...
1001 * @exception SQLException if the columnIndex is not valid;
1006 BigDecimal getBigDecimal(int columnIndex) throws SQLException;
1503 * @param columnIndex the first column is 1, the second is 2, ...
1504 * @exception SQLException if the columnIndex is not valid;
1512 void updateNull(int columnIndex) throws SQLException;
1521 * @param columnIndex the first column is 1, the second is 2, ...
1523 * @exception SQLException if the columnIndex is not valid;
1531 void updateBoolean(int columnIndex, boolean x) throws SQLException;
1541 * @param columnIndex the first column is 1, the second is 2, ...
1543 * @exception SQLException if the columnIndex is not valid;
1551 void updateByte(int columnIndex, byte x) throws SQLException;
1560 * @param columnIndex the first column is 1, the second is 2, ...
1562 * @exception SQLException if the columnIndex is not valid;
1570 void updateShort(int columnIndex, short x) throws SQLException;
1579 * @param columnIndex the first column is 1, the second is 2, ...
1581 * @exception SQLException if the columnIndex is not valid;
1589 void updateInt(int columnIndex, int x) throws SQLException;
1598 * @param columnIndex the first column is 1, the second is 2, ...
1600 * @exception SQLException if the columnIndex is not valid;
1608 void updateLong(int columnIndex, long x) throws SQLException;
1617 * @param columnIndex the first column is 1, the second is 2, ...
1619 * @exception SQLException if the columnIndex is not valid;
1627 void updateFloat(int columnIndex, float x) throws SQLException;
1636 * @param columnIndex the first column is 1, the second is 2, ...
1638 * @exception SQLException if the columnIndex is not valid;
1646 void updateDouble(int columnIndex, double x) throws SQLException;
1656 * @param columnIndex the first column is 1, the second is 2, ...
1658 * @exception SQLException if the columnIndex is not valid;
1666 void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException;
1675 * @param columnIndex the first column is 1, the second is 2, ...
1677 * @exception SQLException if the columnIndex is not valid;
1685 void updateString(int columnIndex, String x) throws SQLException;
1694 * @param columnIndex the first column is 1, the second is 2, ...
1696 * @exception SQLException if the columnIndex is not valid;
1704 void updateBytes(int columnIndex, byte x[]) throws SQLException;
1713 * @param columnIndex the first column is 1, the second is 2, ...
1715 * @exception SQLException if the columnIndex is not valid;
1723 void updateDate(int columnIndex, java.sql.Date x) throws SQLException;
1732 * @param columnIndex the first column is 1, the second is 2, ...
1734 * @exception SQLException if the columnIndex is not valid;
1742 void updateTime(int columnIndex, java.sql.Time x) throws SQLException;
1752 * @param columnIndex the first column is 1, the second is 2, ...
1754 * @exception SQLException if the columnIndex is not valid;
1762 void updateTimestamp(int columnIndex, java.sql.Timestamp x)
1773 * @param columnIndex the first column is 1, the second is 2, ...
1776 * @exception SQLException if the columnIndex is not valid;
1784 void updateAsciiStream(int columnIndex,
1796 * @param columnIndex the first column is 1, the second is 2, ...
1799 * @exception SQLException if the columnIndex is not valid;
1807 void updateBinaryStream(int columnIndex,
1819 * @param columnIndex the first column is 1, the second is 2, ...
1822 * @exception SQLException if the columnIndex is not valid;
1830 void updateCharacterStream(int columnIndex,
1848 * @param columnIndex the first column is 1, the second is 2, ...
1856 * @exception SQLException if the columnIndex is not valid;
1864 void updateObject(int columnIndex, Object x, int scaleOrLength)
1875 * @param columnIndex the first column is 1, the second is 2, ...
1877 * @exception SQLException if the columnIndex is not valid;
1885 void updateObject(int columnIndex, Object x) throws SQLException;
2445 * @param columnIndex the first column is 1, the second is 2, ...
2450 * @exception SQLException if the columnIndex is not valid;
2457 Object getObject(int columnIndex, java.util.Map<String,Class<?>> map)
2465 * @param columnIndex the first column is 1, the second is 2, ...
2468 * @exception SQLException if the columnIndex is not valid;
2475 Ref getRef(int columnIndex) throws SQLException;
2482 * @param columnIndex the first column is 1, the second is 2, ...
2485 * @exception SQLException if the columnIndex is not valid;
2492 Blob getBlob(int columnIndex) throws SQLException;
2499 * @param columnIndex the first column is 1, the second is 2, ...
2502 * @exception SQLException if the columnIndex is not valid;
2509 Clob getClob(int columnIndex) throws SQLException;
2516 * @param columnIndex the first column is 1, the second is 2, ...
2519 * @exception SQLException if the columnIndex is not valid;
2526 Array getArray(int columnIndex) throws SQLException;
2628 * @param columnIndex the first column is 1, the second is 2, ...
2634 * @exception SQLException if the columnIndex is not valid;
2639 java.sql.Date getDate(int columnIndex, Calendar cal) throws SQLException;
2670 * @param columnIndex the first column is 1, the second is 2, ...
2676 * @exception SQLException if the columnIndex is not valid;
2681 java.sql.Time getTime(int columnIndex, Calendar cal) throws SQLException;
2712 * @param columnIndex the first column is 1, the second is 2, ...
2718 * @exception SQLException if the columnIndex is not valid;
2723 java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal)
2771 * @param columnIndex the index of the column 1 is the first, 2 is the second,...
2775 * @exception SQLException if the columnIndex is not valid;
2782 java.net.URL getURL(int columnIndex) throws SQLException;
2809 * @param columnIndex the first column is 1, the second is 2, ...
2811 * @exception SQLException if the columnIndex is not valid;
2819 void updateRef(int columnIndex, java.sql.Ref x) throws SQLException;
2847 * @param columnIndex the first column is 1, the second is 2, ...
2849 * @exception SQLException if the columnIndex is not valid;
2857 void updateBlob(int columnIndex, java.sql.Blob x) throws SQLException;
2885 * @param columnIndex the first column is 1, the second is 2, ...
2887 * @exception SQLException if the columnIndex is not valid;
2895 void updateClob(int columnIndex, java.sql.Clob x) throws SQLException;
2923 * @param columnIndex the first column is 1, the second is 2, ...
2925 * @exception SQLException if the columnIndex is not valid;
2933 void updateArray(int columnIndex, java.sql.Array x) throws SQLException;
2961 * @param columnIndex the first column is 1, the second 2, ...
2964 * @throws SQLException if the columnIndex is not valid;
2971 RowId getRowId(int columnIndex) throws SQLException;
2997 * @param columnIndex the first column is 1, the second 2, ...
2999 * @exception SQLException if the columnIndex is not valid;
3007 void updateRowId(int columnIndex, RowId x) throws SQLException;
3056 * @param columnIndex the first column is 1, the second 2, ...
3058 * @throws SQLException if the columnIndex is not valid;
3068 void updateNString(int columnIndex, String nString) throws SQLException;
3100 * @param columnIndex the first column is 1, the second 2, ...
3102 * @throws SQLException if the columnIndex is not valid;
3112 void updateNClob(int columnIndex, NClob nClob) throws SQLException;
3140 * @param columnIndex the first column is 1, the second is 2, ...
3143 * @exception SQLException if the columnIndex is not valid;
3152 NClob getNClob(int columnIndex) throws SQLException;
3177 * @param columnIndex the first column is 1, the second is 2, ...
3179 * @throws SQLException if the columnIndex is not valid;
3186 SQLXML getSQLXML(int columnIndex) throws SQLException;
3210 * @param columnIndex the first column is 1, the second 2, ...
3212 * @throws SQLException if the columnIndex is not valid;
3226 void updateSQLXML(int columnIndex, SQLXML xmlObject) throws SQLException;
3261 * @param columnIndex the first column is 1, the second is 2, ...
3264 * @exception SQLException if the columnIndex is not valid;
3271 String getNString(int columnIndex) throws SQLException;
3306 * @param columnIndex the first column is 1, the second is 2, ...
3307 * @exception SQLException if the columnIndex is not valid;
3314 java.io.Reader getNCharacterStream(int columnIndex) throws SQLException;
3351 * @param columnIndex the first column is 1, the second is 2, ...
3354 * @exception SQLException if the columnIndex is not valid;
3361 void updateNCharacterStream(int columnIndex,
3402 * @param columnIndex the first column is 1, the second is 2, ...
3405 * @exception SQLException if the columnIndex is not valid;
3413 void updateAsciiStream(int columnIndex,
3426 * @param columnIndex the first column is 1, the second is 2, ...
3429 * @exception SQLException if the columnIndex is not valid;
3437 void updateBinaryStream(int columnIndex,
3450 * @param columnIndex the first column is 1, the second is 2, ...
3453 * @exception SQLException if the columnIndex is not valid;
3461 void updateCharacterStream(int columnIndex,
3546 * @param columnIndex the first column is 1, the second is 2, ...
3550 * @exception SQLException if the columnIndex is not valid;
3558 void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException;
3598 * @param columnIndex the first column is 1, the second is 2, ...
3601 * @exception SQLException if the columnIndex is not valid;
3609 void updateClob(int columnIndex, Reader reader, long length) throws SQLException;
3651 * @param columnIndex the first column is 1, the second 2, ...
3654 * @throws SQLException if the columnIndex is not valid;
3664 void updateNClob(int columnIndex, Reader reader, long length) throws SQLException;
3716 * @param columnIndex the first column is 1, the second is 2, ...
3718 * @exception SQLException if the columnIndex is not valid;
3725 void updateNCharacterStream(int columnIndex,
3773 * @param columnIndex the first column is 1, the second is 2, ...
3775 * @exception SQLException if the columnIndex is not valid;
3783 void updateAsciiStream(int columnIndex,
3800 * @param columnIndex the first column is 1, the second is 2, ...
3802 * @exception SQLException if the columnIndex is not valid;
3810 void updateBinaryStream(int columnIndex,
3827 * @param columnIndex the first column is 1, the second is 2, ...
3829 * @exception SQLException if the columnIndex is not valid;
3837 void updateCharacterStream(int columnIndex,
3932 * @param columnIndex the first column is 1, the second is 2, ...
3935 * @exception SQLException if the columnIndex is not valid; if a database access error occurs;
3942 void updateBlob(int columnIndex, InputStream inputStream) throws SQLException;
3986 * @param columnIndex the first column is 1, the second is 2, ...
3988 * @exception SQLException if the columnIndex is not valid;
3996 void updateClob(int columnIndex, Reader reader) throws SQLException;
4042 * @param columnIndex the first column is 1, the second 2, ...
4044 * @throws SQLException if the columnIndex is not valid;
4054 void updateNClob(int columnIndex, Reader reader) throws SQLException;
4102 * @param columnIndex the first column is 1, the second is 2, ...
4114 public <T> T getObject(int columnIndex, Class<T> type) throws SQLException;
4165 * @param columnIndex the first column is 1, the second is 2, ...
4174 * @exception SQLException if the columnIndex is not valid;
4184 default void updateObject(int columnIndex, Object x,
4242 * @param columnIndex the first column is 1, the second is 2, ...
4245 * @exception SQLException if the columnIndex is not valid;
4255 default void updateObject(int columnIndex, Object x, SQLType targetSqlType)