I've read a date from a database (java.sql.Date).
How can I convert this type to java.util.Calendar
or java.util.GregorianCalendar in JDK 1.2?
The getTime()-Method of java.util.Date is the only Method that is not deprecated, but the Method setTimeInMilis(long) in java.util.Calendar is protected.