ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  The type Date is ambiguous
Posted by manjunath on Jun-27-2008 14:43
hi

when i develop the scrollbar graph chart using Zoomscrolldemo.jsp

instead of rantable i am using mydatabse values in that i have date column so i am getting  "The type Date is ambiguous".

how to solve it.

by
Manju

  Re: The type Date is ambiguous
Posted by Peter Kwan on Jun-28-2008 01:27
Hi manjunath,

This error does not seem to be related to ChartDirector. It seems to be a Java compiler generated error. If the error is generated by the compiler, that means the Java code is invalid and cannot be compiled at all. Are you sure your Java code is correct?

The error basically means the Java compiler does not know what is "Date" mean? Would you mind to clarify what is "Date" mean in your code? (Does it mean java.util.Date or java.sql.Date or something else?) Have your imported conflicting Date definitions? If you are using conflicting Date definition, please use the full name (including the package) to avoid the conflict (eg. use java.util.Date, not just Date).

Hope this can help.

Regards
Peter Kwan

  Re: The type Date is ambiguous
Posted by manjunath on Jun-28-2008 15:48
thanks for updating the API.

its working fine.


bye
Madnju

  Re: The type Date is ambiguous
Posted by lara on Nov-26-2013 14:22
java.util.Date is working fine.thanks!