Sto scoprendo Database Events e ho creato uno script per archiviare i dati ogni giorno:
tell application "Database Events"
tell database "Stats"
set theRecord to make new record with properties {name:mySimpleDate}
tell theRecord
make new field with properties {name:"Accounts", value:theCount}
end tell
end tell
end tell
So come recuperare una informazione per data:
tell application "Database Events"
tell database "Stats"
set theRecord to first record whose name = "24 September 2018"
tell theRecord
value of field "Accounts"
end tell
end tell
end tell
Tuttavia, mi chiedo, posso prendere più risultati contemporaneamente? (ad esempio ogni venerdì a lunedì risultati)?
e posso anche eseguire alcune query SQL come:
SELECT * STATS WHERE MySimpleDate BETWEEN XX AND XX