Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to create dynamic column (as a key/value) names using the values returned from the query throw DIH (DataImportHandler)?

For example:

<entity name="foo" dataSource="my_database" query="select key,value from foo where id=${item.id}">
   <field column="${foo.key}" value="${foo.value}" name="${foo.key}_s"/>
</entity>

??

share|improve this question

1 Answer

up vote 3 down vote accepted

Use ScriptTransformer -

Example -

Data Config - Add custom field -

<script><![CDATA[
        function addfield(row){
            var fieldName = row.get('key') + "_s"
            row.put(fieldName, row.get('value'));
            return row;
        }
]]></script>

Entity mapping -

<entity name="foo" dataSource="my_database" transformer="script:addfield" query="select key,value from foo where id=${item.id}">
    ......
</entity>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.