Lines Matching refs:sql

26 package java.sql;
348 * a <code>java.sql.BigDecimal</code> in the Java programming language.
381 * a <code>java.sql.Date</code> object in the Java programming language.
390 java.sql.Date getDate(int columnIndex) throws SQLException;
395 * a <code>java.sql.Time</code> object in the Java programming language.
404 java.sql.Time getTime(int columnIndex) throws SQLException;
409 * a <code>java.sql.Timestamp</code> object in the Java programming language.
418 java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException;
666 * a <code>java.sql.Date</code> object in the Java programming language.
675 java.sql.Date getDate(String columnLabel) throws SQLException;
680 * a <code>java.sql.Time</code> object in the Java programming language.
690 java.sql.Time getTime(String columnLabel) throws SQLException;
695 * a <code>java.sql.Timestamp</code> object in the Java programming language.
704 java.sql.Timestamp getTimestamp(String columnLabel) throws SQLException;
1702 * Updates the designated column with a <code>java.sql.Date</code> value.
1718 void updateDate(int columnIndex, java.sql.Date x) throws SQLException;
1721 * Updates the designated column with a <code>java.sql.Time</code> value.
1737 void updateTime(int columnIndex, java.sql.Time x) throws SQLException;
1740 * Updates the designated column with a <code>java.sql.Timestamp</code>
1757 void updateTimestamp(int columnIndex, java.sql.Timestamp x)
2032 * Updates the designated column with a <code>java.sql.BigDecimal</code>
2091 * Updates the designated column with a <code>java.sql.Date</code> value.
2107 void updateDate(String columnLabel, java.sql.Date x) throws SQLException;
2110 * Updates the designated column with a <code>java.sql.Time</code> value.
2126 void updateTime(String columnLabel, java.sql.Time x) throws SQLException;
2129 * Updates the designated column with a <code>java.sql.Timestamp</code>
2146 void updateTimestamp(String columnLabel, java.sql.Timestamp x)
2613 * of this <code>ResultSet</code> object as a <code>java.sql.Date</code> object
2622 * @return the column value as a <code>java.sql.Date</code> object;
2630 java.sql.Date getDate(int columnIndex, Calendar cal) throws SQLException;
2634 * of this <code>ResultSet</code> object as a <code>java.sql.Date</code> object
2643 * @return the column value as a <code>java.sql.Date</code> object;
2651 java.sql.Date getDate(String columnLabel, Calendar cal) throws SQLException;
2655 * of this <code>ResultSet</code> object as a <code>java.sql.Time</code> object
2664 * @return the column value as a <code>java.sql.Time</code> object;
2672 java.sql.Time getTime(int columnIndex, Calendar cal) throws SQLException;
2676 * of this <code>ResultSet</code> object as a <code>java.sql.Time</code> object
2685 * @return the column value as a <code>java.sql.Time</code> object;
2693 java.sql.Time getTime(String columnLabel, Calendar cal) throws SQLException;
2697 * of this <code>ResultSet</code> object as a <code>java.sql.Timestamp</code> object
2706 * @return the column value as a <code>java.sql.Timestamp</code> object;
2714 java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal)
2719 * of this <code>ResultSet</code> object as a <code>java.sql.Timestamp</code> object
2728 * @return the column value as a <code>java.sql.Timestamp</code> object;
2736 java.sql.Timestamp getTimestamp(String columnLabel, Calendar cal)
2794 * Updates the designated column with a <code>java.sql.Ref</code> value.
2810 void updateRef(int columnIndex, java.sql.Ref x) throws SQLException;
2813 * Updates the designated column with a <code>java.sql.Ref</code> value.
2829 void updateRef(String columnLabel, java.sql.Ref x) throws SQLException;
2832 * Updates the designated column with a <code>java.sql.Blob</code> value.
2848 void updateBlob(int columnIndex, java.sql.Blob x) throws SQLException;
2851 * Updates the designated column with a <code>java.sql.Blob</code> value.
2867 void updateBlob(String columnLabel, java.sql.Blob x) throws SQLException;
2870 * Updates the designated column with a <code>java.sql.Clob</code> value.
2886 void updateClob(int columnIndex, java.sql.Clob x) throws SQLException;
2889 * Updates the designated column with a <code>java.sql.Clob</code> value.
2905 void updateClob(String columnLabel, java.sql.Clob x) throws SQLException;
2908 * Updates the designated column with a <code>java.sql.Array</code> value.
2924 void updateArray(int columnIndex, java.sql.Array x) throws SQLException;
2927 * Updates the designated column with a <code>java.sql.Array</code> value.
2943 void updateArray(String columnLabel, java.sql.Array x) throws SQLException;
2949 * <code>ResultSet</code> object as a <code>java.sql.RowId</code> object in the Java
2966 * <code>ResultSet</code> object as a <code>java.sql.RowId</code> object in the Java
3085 * Updates the designated column with a <code>java.sql.NClob</code> value.
3106 * Updates the designated column with a <code>java.sql.NClob</code> value.
3167 * <code>java.sql.SQLXML</code> object in the Java programming language.
3182 * <code>java.sql.SQLXML</code> object in the Java programming language.
3194 * Updates the designated column with a <code>java.sql.SQLXML</code> value.
3220 * Updates the designated column with a <code>java.sql.SQLXML</code> value.