I have a Rails 3 model that includes a XML column in the database (IBM DB2). Whenever I try to retrieve this model in the XML format by @model.to_xml, I get as result the XML column escaped, something like this:
<model>
<id>1</id>
<xml-column><tag>value</tag></xml-column>
</model>
What I'm trying to achieve is the following:
<model>
<id>1</id>
<xml-column>
<tag>value</tag>
</xml-column>
</model>
I tried some stuff unsuccessfully so far, like unescaping the XML column and rewriting the to_xml method (I'm not sure how to efficiently parse the XML column).
Any ideas?