Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4210227

java.sql.Date doesn't compare properly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: P4 P4
    • None
    • 1.1.7
    • core-libs
    • generic
    • generic


      This works correctly under jdk1.2 & hotspot alpha2.
      Name: js5519 Date: 02/09/99


      Here is the sample program:

      import java.util.*;
      public class t {
          public static void main(String[] args) {
      java.sql.Date d1 = new java.sql.Date(97,8,26);
      GregorianCalendar gc = new GregorianCalendar(1997,8,26);
      java.sql.Date d2 = new java.sql.Date(gc.getTime().getTime());
      System.out.println(d1);
      System.out.println(d2);
      System.out.println(d1.equals(d2));
          }
      }

      Under JDK1.1.7 this returns:
      1997-09-26
      1997-09-26
      false

      Under JDK.2 the comparison works properly. Why?
      (Review ID: 53936)
      ======================================================================

            jellissunw Jon Ellis (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: