Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
dokuwiki:server [2023/08/26 18:38] Bernard Condraudokuwiki:server [2023/08/26 18:38] – [Check when a date entry was made] Bernard Condrau
Line 100: Line 100:
 ==== Check when a date entry was made ==== ==== Check when a date entry was made ====
   - Copy ''/data/meta/davcal.sqlite3'' to D:\   - Copy ''/data/meta/davcal.sqlite3'' to D:\
-  - Open ''sqlite3.exe'' command line tool from D:\PortableCustom\sqlite3, then enter the following commands to see entries younger than 2023-01-01:<code>.open /davcal.sqlite3+  - Open ''sqlite3.exe'' command line tool from D:\PortableCustom\sqlite3, then enter the following commands to see entries made after 2023-01-01:<code>.open /davcal.sqlite3
 SELECT calendardata FROM calendarobjects WHERE datetime(lastoccurence, 'unixepoch') > '2023-01-01 00:00:00'; SELECT calendardata FROM calendarobjects WHERE datetime(lastoccurence, 'unixepoch') > '2023-01-01 00:00:00';
 .quit</code> .quit</code>