|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Timestamp | |
java.sql | Provides the JDBC package. |
Uses of Timestamp in java.sql |
Methods in java.sql that return Timestamp | |
Timestamp |
ResultSet.getTimestamp(int columnIndex)
Gets the value of a column in the current row as a java.sql.Timestamp object. |
Timestamp |
ResultSet.getTimestamp(String columnName)
Gets the value of a column in the current row as a java.sql.Timestamp object. |
Timestamp |
ResultSet.getTimestamp(int columnIndex,
Calendar cal)
Gets the value of a column in the current row as a java.sql.Timestamp object. |
Timestamp |
ResultSet.getTimestamp(String columnName,
Calendar cal)
Gets the value of a column in the current row as a java.sql.Timestamp object. |
Timestamp |
SQLInput.readTimestamp()
Reads the next attribute in the stream as a java.sql.Timestamp object. |
Timestamp |
CallableStatement.getTimestamp(int parameterIndex)
Gets the value of a JDBC TIMESTAMP parameter as a
java.sql.Timestamp object. |
Timestamp |
CallableStatement.getTimestamp(int parameterIndex,
Calendar cal)
Gets the value of a JDBC TIMESTAMP parameter as a
java.sql.Timestamp object, using
the given Calendar object to construct
the Timestamp object. |
static Timestamp |
Timestamp.valueOf(String s)
Converts a string in JDBC timestamp escape format to a Timestamp value. |
Methods in java.sql with parameters of type Timestamp | |
void |
PreparedStatement.setTimestamp(int parameterIndex,
Timestamp x)
Sets the designated parameter to a java.sql.Timestamp value. |
void |
PreparedStatement.setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal)
JDBC 2.0 Sets the designated parameter to a java.sql.Timestamp value, using the given Calendar object. |
void |
ResultSet.updateTimestamp(int columnIndex,
Timestamp x)
JDBC 2.0 Updates a column with a Timestamp value. |
void |
ResultSet.updateTimestamp(String columnName,
Timestamp x)
JDBC 2.0 Updates a column with a Timestamp value. |
boolean |
Timestamp.equals(Timestamp ts)
Tests to see if this Timestamp object is
equal to the given Timestamp object. |
boolean |
Timestamp.before(Timestamp ts)
Indicates whether this Timestamp object is
earlier than the given Timestamp object. |
boolean |
Timestamp.after(Timestamp ts)
Indicates whether this Timestamp object is
later than the given Timestamp object. |
void |
SQLOutput.writeTimestamp(Timestamp x)
Writes the next attribute to the stream as a java.sql.Timestamp object. |
|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |