Loading...
Logo
Processing Forum
Hello, I can't understand well how sqlite time and dates work in processing. I have a db with a column timestamp saved as integer. If I query the db from a dbms with this:
Copy code
  1. SELECT datetime(data,'localtime') as italyTime  FROM myTable
i obtain not the gmt time but the one according to my country (Italy in this case).

Running the same code into processing (using de.bezier.data.sql.* library), I always obtain the gmt time. Is it possible processing can't access my OS clock and so it can't know where I am?
Thanks