Follow the simple a example
java.sql.Time t = new Time(1000);
System.out.println("Time t =" + t);
This gives the following output:
Time t = 01:00:01
While I would expect:
Time t = 00:00:01
Could someone tell me how to get rid of the hours portion?