i have a database with a Time field. When i get the fields with a php, i receive the Time field as a String, by JSON.
The string i recive is like this: 08:00:00
ok, all work's fine here, but i need to have that String in java.sql.Time format.
There is a easy way to do it?
code:
String hour1=retrieveHourFromPHPSqlConnection();
Time a=hour1;
how to transform hour1 into Time?
thanks

hour1. – darioo Dec 13 '10 at 13:29java.sql.Timefor? Normally you would only use it whenever you're about toINSERTa time field, not when youSELECTit. – BalusC Dec 13 '10 at 13:36