Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for conceptual solution for my problem and advise on using the most appropriate technology.

I have database which consist of one table (id,name,...) In the functionality of the project it is required to add comments. While previewing object there will be space provided for all the comments. Should I create another table with id as primary key and another column called comment ? If so, having two or more comments describing the same product (and sharing the same id) is plan wrong Should I better use some XML file and try to build something like:

   <allobjects>
         <object id=1>
           <comment>blaah blah </comment>
           <comment>something</comment>
         <object id=2>
         </object>
   </allobjects>  

and then loop through xml structure and retrieve comments ?

share|improve this question
perhaps you meant <object id=1> ... </object><object id=2></object> ... instead of <object id=1> ... </object id=2><object></object> ... ? Compare the id=2 placement. – Wug Jul 30 '12 at 20:39
You could also concatenate the comments... – Jack Maney Jul 30 '12 at 20:40

2 Answers

up vote 2 down vote accepted

I wouldn't put this in an xml string to then parse it. If the product is to have one and only one comment, then adding another column to the product table might be a good approach. If you ever plan to support multiple comments to a product then makes more sense to have this stored in a separate table. Similarly, if not all products are to have a comment, it's best if you add another table. The most flexible solution is to create the new table. Storing this in an XML document does not seem too practical, specially because you'll have to parse the xml which will be considerably slow(er) compared to retrieving it straight from a table.

share|improve this answer
OK, how should primary key look like in "comments" table ? – Lomo_effect Jul 30 '12 at 20:56
Comments table: 'product_id (foreign_key), comment_id (pk), comment ` – Icarus Jul 30 '12 at 20:58

Working with the XML you provided is the same thing as using a different table to store the comments (a one-to-many relationship) and I don't see anything wrong in the DB approach.

Depending on your language of use (C#, JAVA , PHP) working with XML files will be easier/harder and would require more experience. On the other hand working with a relational DB and SQL is a "piece-of-cake" for what you said you need.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.