Uses of Class
java.sql.Timestamp
Package
Description
Provides the API for accessing and processing data stored in a
data source (usually a relational database) using the
Java programming language.
Provides the API for server side data source access and processing from
the Java programming language.
Standard interfaces and base classes for JDBC
RowSet
implementations.Provides utility classes to allow serializable mappings between SQL types
and data types in the Java programming language.
-
Uses of Timestamp in java.sql
Modifier and TypeMethodDescriptionstatic Timestamp
Obtains an instance ofTimestamp
from anInstant
object.CallableStatement.getTimestamp
(int parameterIndex) Retrieves the value of the designated JDBCTIMESTAMP
parameter as ajava.sql.Timestamp
object.CallableStatement.getTimestamp
(int parameterIndex, Calendar cal) Retrieves the value of the designated JDBCTIMESTAMP
parameter as ajava.sql.Timestamp
object, using the givenCalendar
object to construct theTimestamp
object.CallableStatement.getTimestamp
(String parameterName) Retrieves the value of a JDBCTIMESTAMP
parameter as ajava.sql.Timestamp
object.CallableStatement.getTimestamp
(String parameterName, Calendar cal) Retrieves the value of a JDBCTIMESTAMP
parameter as ajava.sql.Timestamp
object, using the givenCalendar
object to construct theTimestamp
object.ResultSet.getTimestamp
(int columnIndex) Retrieves the value of the designated column in the current row of thisResultSet
object as ajava.sql.Timestamp
object in the Java programming language.ResultSet.getTimestamp
(int columnIndex, Calendar cal) Retrieves the value of the designated column in the current row of thisResultSet
object as ajava.sql.Timestamp
object in the Java programming language.ResultSet.getTimestamp
(String columnLabel) Retrieves the value of the designated column in the current row of thisResultSet
object as ajava.sql.Timestamp
object in the Java programming language.ResultSet.getTimestamp
(String columnLabel, Calendar cal) Retrieves the value of the designated column in the current row of thisResultSet
object as ajava.sql.Timestamp
object in the Java programming language.SQLInput.readTimestamp()
Reads the next attribute in the stream and returns it as ajava.sql.Timestamp
object.static Timestamp
Converts aString
object in JDBC timestamp escape format to aTimestamp
value.static Timestamp
Timestamp.valueOf
(LocalDateTime dateTime) Obtains an instance ofTimestamp
from aLocalDateTime
object, with the same year, month, day of month, hours, minutes, seconds and nanos date-time value as the providedLocalDateTime
.Modifier and TypeMethodDescriptionboolean
Indicates whether thisTimestamp
object is later than the givenTimestamp
object.boolean
Indicates whether thisTimestamp
object is earlier than the givenTimestamp
object.int
Compares thisTimestamp
object to the givenTimestamp
object.boolean
Tests to see if thisTimestamp
object is equal to the givenTimestamp
object.void
CallableStatement.setTimestamp
(String parameterName, Timestamp x) Sets the designated parameter to the givenjava.sql.Timestamp
value.void
CallableStatement.setTimestamp
(String parameterName, Timestamp x, Calendar cal) Sets the designated parameter to the givenjava.sql.Timestamp
value, using the givenCalendar
object.void
PreparedStatement.setTimestamp
(int parameterIndex, Timestamp x) Sets the designated parameter to the givenjava.sql.Timestamp
value.void
PreparedStatement.setTimestamp
(int parameterIndex, Timestamp x, Calendar cal) Sets the designated parameter to the givenjava.sql.Timestamp
value, using the givenCalendar
object.void
ResultSet.updateTimestamp
(int columnIndex, Timestamp x) Updates the designated column with ajava.sql.Timestamp
value.void
ResultSet.updateTimestamp
(String columnLabel, Timestamp x) Updates the designated column with ajava.sql.Timestamp
value.void
SQLOutput.writeTimestamp
(Timestamp x) Writes the next attribute to the stream as a java.sql.Timestamp object. -
Uses of Timestamp in javax.sql
Modifier and TypeMethodDescriptionvoid
RowSet.setTimestamp
(int parameterIndex, Timestamp x) Sets the designated parameter in thisRowSet
object's command to the givenjava.sql.Timestamp
value.void
RowSet.setTimestamp
(int parameterIndex, Timestamp x, Calendar cal) Sets the designated parameter in thisRowSet
object's command with the givenjava.sql.Timestamp
value.void
RowSet.setTimestamp
(String parameterName, Timestamp x) Sets the designated parameter to the givenjava.sql.Timestamp
value.void
RowSet.setTimestamp
(String parameterName, Timestamp x, Calendar cal) Sets the designated parameter to the givenjava.sql.Timestamp
value, using the givenCalendar
object. -
Uses of Timestamp in javax.sql.rowset
Modifier and TypeMethodDescriptionvoid
BaseRowSet.setTimestamp
(int parameterIndex, Timestamp x) Sets the designated parameter to the givenjava.sql.Timestamp
value.void
BaseRowSet.setTimestamp
(int parameterIndex, Timestamp x, Calendar cal) Sets the designated parameter to the givenjava.sql.Timestamp
object.void
BaseRowSet.setTimestamp
(String parameterName, Timestamp x) Sets the designated parameter to the givenjava.sql.Timestamp
value.void
BaseRowSet.setTimestamp
(String parameterName, Timestamp x, Calendar cal) Sets the designated parameter to the givenjava.sql.Timestamp
value, using the givenCalendar
object. -
Uses of Timestamp in javax.sql.rowset.serial
Modifier and TypeMethodDescriptionSQLInputImpl.readTimestamp()
Retrieves the next attribute in thisSQLInputImpl
object as ajava.sql.Timestamp
object.Modifier and TypeMethodDescriptionvoid
SQLOutputImpl.writeTimestamp
(Timestamp x) Writes ajava.sql.Timestamp
object in the Java programming language to thisSQLOutputImpl
object.