I have worked on several applications that saved XML data into a database. To date all of them simply overwrote the current XML contents with the new XML contents.
I would like to save the changes to the XML to the database but not overwrite what is currently in the DB.
Short of just creating new rows for changes and leaving the old rows intact, what other options could I use?
I've thought about just saving the differences as actual text differences, which does not always work for XML.
Am I nuts for even wanting this?