Rus Corina wrote:Actually, doesn't work. I work with both java and sql statements, and when trying to define a Date object, it tells me that it is ambiguous whether it is a java Date object or SQL Date object.
Ok, but the reason it doesn't work doesn't have anything to do with the code that Zandis posted.
It's because you have two classes both named Date: java.util.Date and java.sql.Date. If you import both java.util.* and java.sql.* then Java doesn't know which one you mean if you use class Date. You should spell out the entire class name in your code, like this: