I have a joda DateTime value stored in mysql as String.
But when I try to get this string from mysql table, its format changes and when I try to convert this string into DateTime, it throws:-
IllegalArgumentException: Invalid format: "2012-10-04 00:00:00.0" is malformed at " 00:00:00.0"
In the Mysql table I can see the values as"2012-10-04 00:00:00", but when I get this time from mysql it is printing as "2012-10-04 00:00:00.0".
Please help me.