I have my datetime SQL columns with all my data in UTC, for example:
2020-05-31 16:59:35
But when I extract it from my app with this query:
select expdate
from tempbans
where banid = '${tempVars("banid")}'
I get this output:
Sun May 31 2020 18:59:35 GMT+0200 (GMT+02:00)
I know the local machine is on UTC+2 but I don't want it to auto-convert it for me, I want the output in my app to remain UTC.
What can I do?
Thanks.