What would an address book saved as an XML document need (name, address, email, phone number,...)? And what would be best practice to save pictures?
Should I save the XML files in an database? Or group everything in a zip file?
Any other thoughts?
What would an address book saved as an XML document need (name, address, email, phone number,...)? And what would be best practice to save pictures?
Should I save the XML files in an database? Or group everything in a zip file?
Any other thoughts?
What would an address book saved as an XML document need
I sense a danger of wheel reinvention: http://www.w3.org/Submission/vcard-rdf/
And what would be best practice to save pictures?
http://www.w3.org/Submission/vcard-rdf/#Bin also seems to be a solved problem
Should I save the XML files in an database? Or group everything in a zip file?
That depends what you are doing with the data.
As a rule of thumb, if you want a data store, use a database and not XML. XML makes a great transport mechanism, and document format, but a poor database.