java.sql.Date is a class in the Java programming language that represents a specific date, without any time information. It extends the java.util.Date class and provides methods to manipulate and format dates. It is commonly used in applications that require storing or retrieving date values from a database using JDBC (Java Database Connectivity). The java.sql.Date class stores the date as a long value, representing the number of milliseconds since January 1, 1970, 00:00:00 GMT. It does not contain any time or time zone information and is intended to be used for simple date calculations and comparisons.
Java Date - 30 examples found. These are the top rated real world Java examples of java.sql.Date extracted from open source projects. You can rate examples to help us improve the quality of examples.