>
> Job Details Table:
> 1. Job Order no.
> 2. Description.
>
> Description is used to record the job requirement, and all the details.
> Should I save the html tag to the table together with the data ?
> As I want to display the data with a formatting such as separate paragraph,
> bold and etc.
>
> Is there any good way that only save the data without the html tag but the
> output with formatting ??

Dick,

I would suggest looking into creating a more robust table (or tables) instead of 
storing
multiple values in a single table. In your case, you might be able to add fields that
indicate whether it is a contract or permanent position, salary, whether travel is
required and if so how much, and so forth.

But no matter what the underlying data is you want to separate it into as many fields
as necessary. Storing different kinds of data in a single field defeats the purpose
of storing data in a database in the first place. This will also help with 
presentation,
because you can display values however you like without having to store markup in the
database.

Get on Google and do a search for "normalizing" or "normalization." That's really what
we're talking about here.

Good luck!

- James Childers

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to