Possible Duplicate:
C++ Vector to CSV by adding Comma after each element
I have a vector:
std::vector<std::pair<int, QString> > recordingArray;
I need to convert it to a comma delimitated string so I can store it in a database (is there a better format for the data - it all needs to go in one field)
How can I convert it to a comma delimitated string?
And then later, convert it back?