> I have a stack trace. Happened on ORMLite 4.27
>
> Caused by: java.sql.SQLException: Problems with column 1 parsing date-string '2012-01-22 12:00:00.000677' using 'yyyy-MM-dd HH:mm:ss.SSSSSS'
Huh. Seems like this is a locale issue. What's the right solution here? To force the local to be US or something when it does the parse?
gray
> Any suggestions on how to fix this? Even the error message implicate that the date is on the format expected..
You can specify the format to use when converting to/from a string date. See here:
You may have to do some data conversions to get this to work if some of your rows are in different formats than others.
gray