Hello,
The only reference I see about timezone support in SQLite is in this example:
Compute the date and time given a unix timestamp 1092941466, and compensate for your local timezone.
SELECT datetime(1092941466, 'unixepoch', 'localtime');
I found this here: http://www.sqlite.org/cvstrac/wiki?p=DateAndTimeFunctions
Where can I find more info?
Thanks,
-- Tito