Resolved TIME function

Hi,

I have a OE server that is scale on American Central Time zone for the hour & a client runing on Paris time zone.
When I prompt the TIME on the screen:

Code:
MESSAGE STRING(TIME,"HH:MM:SS")
    VIEW-AS ALERT-BOX INFO BUTTONS OK.

It show me the Server Time and not my local time. So I just want to be sure of how it works ?

Do you have some info ?

Best regards,

- BobyIsProgress -
 

KrisM

Member
If your code is running on the server and not on the client, then for me it is obvious it is also using server time as local time. :)
Anyway to change the server timezone, use property session:timezone.
 

TomBascom

Curmudgeon
To be clear -- session:timezone changes the SESSION timezone locally. It overrides the default timezone which is the timezone of the db server (if you are connected to a db). It does not change the server timezone.
 
Top