Since several versions, my Thunderbird address book (SQLite) fails with the following query: which used to convert the epoch time into office time (days since 1899-12-30).
"value" is a numeric text, but with version 1.0 of your extension, the implicit conversion worked just fine. On https://sqlite.org/lang_corefunc.html I can not find any explicit conversion.
Code:
SELECT "value" / 86400.00000 + 25569.00000 AS "LastModifiedDate" FROM "properties" WHERE "name" = "LastModifiedDate"
"value" is a numeric text, but with version 1.0 of your extension, the implicit conversion worked just fine. On https://sqlite.org/lang_corefunc.html I can not find any explicit conversion.
Statistics: Posted by Villeroy — Mon Aug 05, 2024 2:22 pm