DateTime related question

0
In Mendix when a datetime attribute is localized, the value stored in database will be formatted in ? The UTC time zone The database server time zone The application server time zone The project time zone.
asked
1 answers
2

The Database usually always have UTC times stored. The localized offset is added at runtime. You can see it when connecting the debugger to it. It always shows both, UTC and localized time.

answered