E
Eric Andruscavage
Guest
In version 9 I needed to store a date-time in an integer field, so I used: v-datetime = int(today - 01/01/2005) * 1440 + (time / 60). This is <= 8 digits well into the 22nd century. These days I use ADD-INTERVAL(DATETIME (01/01/2005),v-datetime,'minutes') to get it back.
Continue reading...
Continue reading...