Hi,
Trying to get a Timestamp like
2005-03-03 14:35:39.0 to a string so i can chop off both ends and have it lookin like
03-03 14:35 .
Retriveing a Timestamp from the DB with
mess_date = rs.getTimestamp("x");
Then attempting this
string_date = Timestamp.toString(mess_date);
my_date = string_date.substring(5,16);
Am I going about this the right way?
Any suggestions greatly appreciated