what are the good options to store xml structured data and query the data in MySQL? I know from mysql5.1.5 there is a function ExtractValue() to query the data directly, but due to certain limitations I can only use mysql5.0.x. what I need is to store the data in simple xml format, such as
<person>
<name>My Name</name>
<gender>male</gener>
</person>
And I need to be able to directly query all persons who are male.