Uses of Class
java.sql.Date

Packages that useDate
Package
Description
java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language.
javax.sql
Provides the API for server side data source access and processing from the Java programming language.
javax.sql.rowset
Standard interfaces and base classes for JDBCRowSet implementations.
javax.sql.rowset.serial
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
  • Uses ofDate injava.sql

    Methods injava.sql that returnDate
    Modifier and Type
    Method
    Description
    CallableStatement.getDate(int parameterIndex)
    Retrieves the value of the designated JDBCDATE parameter as ajava.sql.Date object.
    CallableStatement.getDate(int parameterIndex,Calendar cal)
    Retrieves the value of the designated JDBCDATE parameter as ajava.sql.Date object, using the givenCalendar object to construct the date.
    CallableStatement.getDate(String parameterName)
    Retrieves the value of a JDBCDATE parameter as ajava.sql.Date object.
    CallableStatement.getDate(String parameterName,Calendar cal)
    Retrieves the value of a JDBCDATE parameter as ajava.sql.Date object, using the givenCalendar object to construct the date.
    ResultSet.getDate(int columnIndex)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.Date object in the Java programming language.
    ResultSet.getDate(int columnIndex,Calendar cal)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.Date object in the Java programming language.
    ResultSet.getDate(String columnLabel)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.Date object in the Java programming language.
    ResultSet.getDate(String columnLabel,Calendar cal)
    Retrieves the value of the designated column in the current row of thisResultSet object as ajava.sql.Date object in the Java programming language.
    SQLInput.readDate()
    Reads the next attribute in the stream and returns it as ajava.sql.Date object.
    staticDate
    Date.valueOf(String s)
    Converts a string in JDBC date escape format to aDate value.
    staticDate
    Date.valueOf(LocalDate date)
    Obtains an instance ofDate from aLocalDate object with the same year, month and day of month value as the givenLocalDate.
    Methods injava.sql with parameters of typeDate
    Modifier and Type
    Method
    Description
    void
    CallableStatement.setDate(String parameterName,Date x)
    Sets the designated parameter to the givenjava.sql.Date value using the default time zone of the virtual machine that is running the application.
    void
    CallableStatement.setDate(String parameterName,Date x,Calendar cal)
    Sets the designated parameter to the givenjava.sql.Date value, using the givenCalendar object.
    void
    PreparedStatement.setDate(int parameterIndex,Date x)
    Sets the designated parameter to the givenjava.sql.Date value using the default time zone of the virtual machine that is running the application.
    void
    PreparedStatement.setDate(int parameterIndex,Date x,Calendar cal)
    Sets the designated parameter to the givenjava.sql.Date value, using the givenCalendar object.
    void
    ResultSet.updateDate(int columnIndex,Date x)
    Updates the designated column with ajava.sql.Date value.
    void
    ResultSet.updateDate(String columnLabel,Date x)
    Updates the designated column with ajava.sql.Date value.
    void
    SQLOutput.writeDate(Date x)
    Writes the next attribute to the stream as a java.sql.Date object.
  • Uses ofDate injavax.sql

    Methods injavax.sql with parameters of typeDate
    Modifier and Type
    Method
    Description
    void
    RowSet.setDate(int parameterIndex,Date x)
    Sets the designated parameter in thisRowSet object's command to the givenjava.sql.Date value.
    void
    RowSet.setDate(int parameterIndex,Date x,Calendar cal)
    Sets the designated parameter in thisRowSet object's command with the givenjava.sql.Date value.
    void
    RowSet.setDate(String parameterName,Date x)
    Sets the designated parameter to the givenjava.sql.Date value using the default time zone of the virtual machine that is running the application.
    void
    RowSet.setDate(String parameterName,Date x,Calendar cal)
    Sets the designated parameter to the givenjava.sql.Date value, using the givenCalendar object.
  • Uses ofDate injavax.sql.rowset

    Methods injavax.sql.rowset with parameters of typeDate
    Modifier and Type
    Method
    Description
    void
    BaseRowSet.setDate(int parameterIndex,Date x)
    Sets the designated parameter to the givenjava.sql.Date value.
    void
    BaseRowSet.setDate(int parameterIndex,Date x,Calendar cal)
    Sets the designated parameter to the givenjava.sql.Date object.
    void
    BaseRowSet.setDate(String parameterName,Date x)
    Sets the designated parameter to the givenjava.sql.Date value using the default time zone of the virtual machine that is running the application.
    void
    BaseRowSet.setDate(String parameterName,Date x,Calendar cal)
    Sets the designated parameter to the givenjava.sql.Date value, using the givenCalendar object.
  • Uses ofDate injavax.sql.rowset.serial

    Methods injavax.sql.rowset.serial that returnDate
    Modifier and Type
    Method
    Description
    SQLInputImpl.readDate()
    Retrieves the next attribute in thisSQLInputImpl as ajava.sql.Date object.
    Methods injavax.sql.rowset.serial with parameters of typeDate
    Modifier and Type
    Method
    Description
    void
    SQLOutputImpl.writeDate(Date x)
    Writes ajava.sql.Date object in the Java programming language to thisSQLOutputImpl object.