5 Replies Latest reply on Feb 3, 2006 3:10 PM by tom.baeyens

    Process Variables stored as Date have problems...here's reso

    costeen

      Process Variables stored as Date are returned as Timestamp(at least in Hypersonic SQL). DateToLongConverter does not support that.

      Since Date are stored as Timestamps....the DateInstance and DateToLongConverter class need to be able to support them. Right now they only support Date.class.

      Change DateInstance.java and DateToLongConverter.java's support function to be:

      protected boolean supports(Class clazz) {
      return Date.class.isAssignableFrom(clazz);
      }

      This will allow conversion from any implementation of date...rather than just date itself.