Hi
I have a pre-existing database that I copy from assets dir to sd card.
I have a table with date column and I store it as TEXT in the format yyyy-MM-dd HH:mm:ss.
I noticed that you use long for storing date:
stmt.bindLong(2, WorkingDate.getTime());
Is there a way to map the date property to date as TEXT column type in database?
I tried with t.addDateProperty("workingDate").columnName("WorkingDate").columnType("TEXT");
But it still generates the above long type bind.
Regards,
Sebastijan