Hi Guys, I have a question about the data import handler and its configuration file
This is what a part of my data-config looks like: ============================================ <field column="TASKS" name="TASKS" /> <entity name="tasks" child="true" query="select name, description from *** where project_id='${project.PROJECT_ID_ORIGINAL}'"> <field column="NAME" name="name" /> <field column="DESCRIPTION" name="description" /> </entity> =============================================== I would like it so that when its indexed, it returns in xml the following when on that doc. -<arr name="tasks"> <str name=name>This Is my name</str> <str name=description>This is my description</str> </arr> The best I have gotten it to do so far is to add to the values in name and description, which are fields on the doc. Thanks for any help - P.S. I shall be replying to the other threads as well, I Just took a break from it to come work on another part of SOLR. Sas