| 
 | 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 TIMESTAMPparameter as ajava.sql.Timestampobject. | 
|  Timestamp | CallableStatement.getTimestamp(int parameterIndex,
             Calendar cal)Gets the value of a JDBC TIMESTAMPparameter as ajava.sql.Timestampobject, using
 the givenCalendarobject to construct
 theTimestampobject. | 
| static Timestamp | Timestamp.valueOf(String s)Converts a string in JDBC timestamp escape format to a Timestampvalue. | 
| 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 Calendarobject. | 
|  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 Timestampobject is
 equal to the givenTimestampobject. | 
|  boolean | Timestamp.before(Timestamp ts)Indicates whether this Timestampobject is
 earlier than the givenTimestampobject. | 
|  boolean | Timestamp.after(Timestamp ts)Indicates whether this Timestampobject is
 later than the givenTimestampobject. | 
|  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 | |||||||||