What I would do is to convert the date into ISO format, then insert the value into the database.
Using VBScript
:
Code:
Function ConvertISODate(dteDate)
dteYear = Year(dteDate)
dteMonth = Month(dteDate)
dteDay = Day(dteDate)
ConvertISODate = dteYear & Right(CStr(dteMonth)+100,2) & Right(CStr(dteDay)+100,2)
End Function