Date.SQLDateTime

From Xojo Documentation

Read-Only Property (As String )
StringValue = aDate.SQLDateTime

Supported for all project types and targets.

Gets and sets the date in SQL date/time format, YYYY-MM-DD HH:MM:SS. Passing a bad string will result in an UnsupportedFormatException.

Notes

This is an example of an SQL date/time: 2008-09-03 13:39:16

Sample Code

The following code displays the current SQL date/time.

Var d As Date = Date.Now
Label1.Value = d.SQLDateTime