I'm running ORMlite on Android app. I have created a @DatabaseTable class with a Timestamp field.
@DatabaseTable
public class Cliente {
@DatabaseField
private Timestamp dateinicio;
}
I can insert items but when I try to recover data I get this error:
java.sql.SQLException: Could not assign object 'Wed Jan 29 13:35:01 CET 2014'
to field FieldType:name=dateinicio,class=Cliente
I suppose this must be a typical error but I cannot resolve it.