Lines Matching defs:cal

3363      * @param cal the <code>java.util.Calendar</code> object
3372 public java.sql.Date getDate(int columnIndex, Calendar cal) throws SQLException {
3375 return rs.getDate(columnIndex, cal);
3386 * @param cal the <code>java.util.Calendar</code> object
3396 public java.sql.Date getDate(String columnName, Calendar cal) throws SQLException {
3397 return getDate(findColumn(columnName), cal);
3408 * @param cal the <code>java.util.Calendar</code> object
3417 public java.sql.Time getTime(int columnIndex, Calendar cal) throws SQLException {
3420 return rs.getTime(columnIndex, cal);
3431 * @param cal the <code>java.util.Calendar</code> object
3440 public java.sql.Time getTime(String columnName, Calendar cal) throws SQLException {
3441 return getTime(findColumn(columnName), cal);
3453 * @param cal the <code>java.util.Calendar</code> object
3462 public java.sql.Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
3465 return rs.getTimestamp(columnIndex, cal);
3477 * @param cal the <code>java.util.Calendar</code> object
3486 public java.sql.Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
3487 return getTimestamp(findColumn(columnName), cal);
6110 * @param cal the <code>Calendar</code> object the driver will use
6119 public void setTimestamp(String parameterName, java.sql.Timestamp x, Calendar cal)
6228 * @param cal the <code>Calendar</code> object the driver will use
6237 public void setDate(String parameterName, java.sql.Date x, Calendar cal)
6274 * @param cal the <code>Calendar</code> object the driver will use
6283 public void setTime(String parameterName, java.sql.Time x, Calendar cal)