public class java.sql
Date


Show All Login
Java SE 6
  
Extends: Date

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.
yearthe year minus 1900; must be 0 to 8099. (Note that 8099 is 9999 minus 1900.)
month0 to 11
day1 to 31
deprecatedinstead use the constructor Date(long date)

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.
datemilliseconds since January 1, 1970, 00:00:00 GMT not to exceed the milliseconds representation for the year 8099. A negative number indicates the number of milliseconds before January 1, 1970, 00:00:00 GMT.

Methods
public String toString() Details
Formats a date in the date escape format yyyy-mm-dd.

returna String in yyyy-mm-dd format

public static Date valueOf(String s) Details
Converts a string in JDBC date escape format to a Date value.
sa String object representing a date in in the format "yyyy-mm-dd"
returna java.sql.Date object representing the given date
ThrowsIllegalArgumentException: if the date given is not in the JDBC date escape format (yyyy-mm-dd)

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.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also getHours
public int getHours() Details
This method is deprecated and should not be used because SQL Date values do not have a time component.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also setHours
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.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also getMinutes
public int getMinutes() Details
This method is deprecated and should not be used because SQL Date values do not have a time component.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also setMinutes
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.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also getSeconds
public int getSeconds() Details
This method is deprecated and should not be used because SQL Date values do not have a time component.
deprecated
ThrowsIllegalArgumentException: if this method is invoked
See also setSeconds
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.
datemilliseconds since January 1, 1970, 00:00:00 GMT not to exceed the milliseconds representation for the year 8099. A negative number indicates the number of milliseconds before January 1, 1970, 00:00:00 GMT.