I converted a sql database into xml files. the database used an id# that was incremented by the database automatically. how can I replicate that id now?
Printable View
I converted a sql database into xml files. the database used an id# that was incremented by the database automatically. how can I replicate that id now?
bump
Do you mean that everytime you want to add data to the XML file, there should be an 'autoincrement'?
I believe that you will have to implement this yourself, by getting the highest value there, and then adding 1 to it...
yeah, exactly. I was thinking that's how I'd have to do it. Seeing as how an xml file is essentially a text file.
:)