Searched refs:Time (Results 1 - 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
H A DTime.java31 * API to identify this as an SQL <code>TIME</code> value. The <code>Time</code>
38 public class Time extends java.util.Date { class in inherits:java.util.Date
41 * Constructs a <code>Time</code> object initialized with the
45 * <code>Time</code> object will throw a
58 public Time(int hour, int minute, int second) { method in class:Time
63 * Constructs a <code>Time</code> object using a milliseconds time value.
69 public Time(long time) { method in class:Time
74 * Sets a <code>Time</code> object using a milliseconds time value.
85 * Converts a string in JDBC time escape format to a <code>Time</code> value.
88 * @return a corresponding <code>Time</cod
[all...]
H A DSQLInput.java197 * Reads the next attribute in the stream and returns it as a <code>java.sql.Time</code> object.
205 java.sql.Time readTime() throws SQLException;
H A DSQLOutput.java200 * Writes the next attribute to the stream as a java.sql.Time object.
210 void writeTime(java.sql.Time x) throws SQLException;
H A DCallableStatement.java334 * <code>java.sql.Time</code> object.
345 java.sql.Time getTime(int parameterIndex) throws SQLException;
527 * <code>java.sql.Time</code> object, using
547 java.sql.Time getTime(int parameterIndex, Calendar cal)
995 * Sets the designated parameter to the given <code>java.sql.Time</code> value.
1009 void setTime(String parameterName, java.sql.Time x)
1251 * Sets the designated parameter to the given <code>java.sql.Time</code> value,
1272 void setTime(String parameterName, java.sql.Time x, Calendar cal)
1507 * <code>java.sql.Time</code> object.
1519 java.sql.Time getTim
[all...]
H A DPreparedStatement.java270 * Sets the designated parameter to the given <code>java.sql.Time</code> value.
280 void setTime(int parameterIndex, java.sql.Time x)
638 * Sets the designated parameter to the given <code>java.sql.Time</code> value,
656 void setTime(int parameterIndex, java.sql.Time x, Calendar cal)
H A DResultSet.java398 * a <code>java.sql.Time</code> object in the Java programming language.
407 java.sql.Time getTime(int columnIndex) throws SQLException;
686 * a <code>java.sql.Time</code> object in the Java programming language.
696 java.sql.Time getTime(String columnLabel) throws SQLException;
1728 * Updates the designated column with a <code>java.sql.Time</code> value.
1744 void updateTime(int columnIndex, java.sql.Time x) throws SQLException;
2117 * Updates the designated column with a <code>java.sql.Time</code> value.
2133 void updateTime(String columnLabel, java.sql.Time x) throws SQLException;
2662 * of this <code>ResultSet</code> object as a <code>java.sql.Time</code> object
2671 * @return the column value as a <code>java.sql.Time</cod
[all...]
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetGetterTests.java29 import java.sql.Time;
133 java.sql.Time.class, // Types.TIME,
922 // getTime should return Time value for a TIMESTAMP type but returns null
934 Time t1 = new java.sql.Time(millis);
948 Time t2 = new java.sql.Time(millis2);
952 Time resTime = res.getTime(i);
980 List<Time> times = new LinkedList<Time>();
[all...]
H A DOldPreparedStatementTest.java36 import java.sql.Time;
1920 Time[] times = { new Time(24, 25, 26), new Time(Integer.MAX_VALUE),
1921 new Time(123456789) };
1980 Time[] times = { new Time(24, 25, 26), new Time(Integer.MAX_VALUE),
1981 new Time(123456789) };
/libcore/ojluni/src/main/java/javax/sql/
H A DRowSet.java834 * to the given <code>java.sql.Time</code> value. The driver converts this to
842 void setTime(int parameterIndex, java.sql.Time x) throws SQLException;
1735 * with the given <code>java.sql.Time</code> value. The driver will convert this
1744 void setTime(int parameterIndex, java.sql.Time x, Calendar cal)
1748 * Sets the designated parameter to the given <code>java.sql.Time</code> value.
1761 void setTime(String parameterName, java.sql.Time x)
1765 * Sets the designated parameter to the given <code>java.sql.Time</code> value,
1785 void setTime(String parameterName, java.sql.Time x, Calendar cal)
/libcore/luni/src/test/java/tests/support/
H A DDatabaseCreator.java23 import java.sql.Time;
363 + new Time(time).toString() + "')";
/libcore/luni/src/test/java/tests/java/sql/
H A DSelectFunctionalityTest.java29 import java.sql.Time;
50 private static Time time;
103 time = new Time(currentTime);
H A DStressTest.java331 ps.setTime(11, new java.sql.Time(System.currentTimeMillis()));
/libcore/
H A Dopenjdk_java_files.mk736 ojluni/src/main/java/java/sql/Time.java \

Completed in 404 milliseconds