JavaTM 2 Platform
Std. Ed. v1.4.2

Uses of Class
java.sql.Time

Packages that use Time
java.sql Provides the API for accessing and processing data stored in a data source (usually a relational database) using the JavaTM programming language. 
javax.sql Provides the API for server side data source access and processing from the JavaTM programming language. 
 

Uses of Time in java.sql
 

Methods in java.sql that return Time
 Time SQLInput.readTime()
          Reads the next attribute in the stream and returns it as a java.sql.Time object.
 Time CallableStatement.getTime(int parameterIndex)
          Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object.
 Time CallableStatement.getTime(int parameterIndex, Calendar cal)
          Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
 Time CallableStatement.getTime(String parameterName)
          Retrieves the value of a JDBC TIME parameter as a java.sql.Time object.
 Time CallableStatement.getTime(String parameterName, Calendar cal)
          Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
static Time Time.valueOf(String s)
          Converts a string in JDBC time escape format to a Time value.
 Time ResultSet.getTime(int columnIndex)
          Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
 Time ResultSet.getTime(String columnName)
          Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
 Time ResultSet.getTime(int columnIndex, Calendar cal)
          Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
 Time ResultSet.getTime(String columnName, Calendar cal)
          Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
 

Methods in java.sql with parameters of type Time
 void SQLOutput.writeTime(Time x)
          Writes the next attribute to the stream as a java.sql.Time object.
 void CallableStatement.setTime(String parameterName, Time x)
          Sets the designated parameter to the given java.sql.Time value.
 void CallableStatement.setTime(String parameterName, Time x, Calendar cal)
          Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
 void PreparedStatement.setTime(int parameterIndex, Time x)
          Sets the designated parameter to the given java.sql.Time value.
 void PreparedStatement.setTime(int parameterIndex, Time x, Calendar cal)
          Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
 void ResultSet.updateTime(int columnIndex, Time x)
          Updates the designated column with a java.sql.Time value.
 void ResultSet.updateTime(String columnName, Time x)
          Updates the designated column with a java.sql.Time value.
 

Uses of Time in javax.sql
 

Methods in javax.sql with parameters of type Time
 void RowSet.setTime(int parameterIndex, Time x)
          Sets the designated parameter in this RowSet object's command to the given java.sql.Time value.
 void RowSet.setTime(int parameterIndex, Time x, Calendar cal)
          Sets the designated parameter in this RowSet object's command with the given java.sql.Time value.
 


JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.