Problem saving Recordset (adPersistXML)
Hi there,
I am having a problematic date format when I save a Recordset into xml format using the following code:
Set rsTitles = CreateObject("ADODB.Recordset")
rsTitles.Open "Select brand, date_of_sale from cars"
rsTitles.Save szFile, 1 'adPersistXML
The output xml file contains a "strange" date format since between the date and time exists a "T"
date_of_sale='2001-06-11T11:47:00'
Any ideas what might go wrong?!
Regards,
Theodore.
|