Good afternoon !
I have researching in all web, and i haven´t found anything about it. That´s weird, maybe it´s a personal problem. Because anyone has problem like me.
So, i made a simple command in mysql to make that job
LOAD XML LOCAL INFILE
'person.xml'
INTO TABLE
person
ROWS IDENTIFIED BY
'<person>'
The file person.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<list>
<person>
<field name="person_id">5</field>
<field name="fname"><![CDATA[Ronström]]></field>
<field name="lname">Ulin</field>
</person>
<person>
<field name="person_id">6</field>
<field name="fname"><![CDATA[Mikael]]></field>
<field name="lname">Sköld</field>
</person>
</list>
The INSERT is done without problems, the point is that not make the insert the values inside of the tag CDATA, it´s returning NULL. There is some way to strip that tag, to return only values ?!