I have an Excel spreadsheet with a date/time field that I am trying to load into mySQL. I can import all of the data but the time part of the field is lost. If I convert the date to a text string in Excel, the import fails in an ugly way. The error is as follows:
Microsoft VBScript runtime error '800a0006'
Overflow: 'cint'
/include/locale.asp, line 644
I've tried the mySQL default of "YYYY-MM-DD HH:MM:SS" and this fails with the CInt error. I also tried "YYYYMMDDHHMMSS" and this also fails.
Any pointers?
Thanks /Bob