Hi!
Code:
===
dtf.DateSeparator := '-';
dtf.TimeSeparator := ':';
dtf.ShortDateFormat := 'yyyy-MM-dd';
dtf.ShortTimeFormat := 'hh:mm:ss';
dt := StrToDateTime(s, dtf);
...
DM.quRecords.InsertRecord([id,
dt, // whendate
data.Strings[1]]); // tel
...
===
I got Database records with different values. One year before:
id whendate
-- --------
xx 40994.59472
And after change Lazarus version:
id whendate
-- --------
xx 2456013,119
All records are in one sqlite datebase now. And I do not know what to do to fix this.
SQLite now normally converts 2456288,423 to '2012-12-26', so I need to convert old records to this format.