Hi,
I am working on a test site locally. I am loading an xml file into my database with teh following sql query:
LOAD XML LOCAL INFILE 'C:/courseInfo18.xml'
INTO TABLE wp_courses ROWS IDENTIFIED BY '<Course>' (ReferenceNo, ProviderCode, ProviderName, CourseID, CourseName,
CourseTypeID, CourseTypeName, LocationCode, LocationName, StartDate,
FinishDate) ;
It works fine locally but not on the live site. I have checked the MySQL version of the live site and it is running only 5.0.8 could this be the reason or does anyone know if there is an alterative way to do this on an older version of MySQL.
Thanks in advance,
Donna :)