| public class java.sql Date
|
Java SE 6 |
A thin wrapper around a millisecond value that allows
JDBC to identify this as an SQL DATE value. A
milliseconds value represents the number of milliseconds that
have passed since January 1, 1970 00:00:00.000 GMT.
To conform with the definition of SQL DATE, the
millisecond values wrapped by a java.sql.Date instance
must be 'normalized' by setting the
hours, minutes, seconds, and milliseconds to zero in the particular
time zone with which the instance is associated.
| Constructors | |||||||||
|---|---|---|---|---|---|---|---|---|---|
| public | Date(int year, int month, int day) Details
Constructs a Date object initialized with the given
year, month, and day.
The result is undefined if a given argument is out of bounds.
| ||||||||
| public | Date(long date) Details
Constructs a Date object using the given milliseconds
time value. If the given milliseconds value contains time
information, the driver will set the time components to the
time in the default time zone (the time zone of the Java virtual
machine running the application) that corresponds to zero GMT.
| ||||||||
| Methods | |||||||
|---|---|---|---|---|---|---|---|
| public String | toString() Details
Formats a date in the date escape format yyyy-mm-dd.
| ||||||
| public static Date | valueOf(String s) Details
Converts a string in JDBC date escape format to
a Date value.
| ||||||
| Properties | |||||||
|---|---|---|---|---|---|---|---|
| public void | setHours(int i) Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public int | getHours() Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public void | setMinutes(int i) Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public int | getMinutes() Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public void | setSeconds(int i) Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public int | getSeconds() Details
This method is deprecated and should not be used because SQL Date
values do not have a time component.
| ||||||
| public void | setTime(long date) Details
Sets an existing Date object
using the given milliseconds time value.
If the given milliseconds value contains time information,
the driver will set the time components to the
time in the default time zone (the time zone of the Java virtual
machine running the application) that corresponds to zero GMT.
| ||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|