I’m developing a data base driven web application. but I now I got a dilemma .
My data consists of names and their cods. The codes are data base table field names.
I need to display name of corresponding code. same name may contain deferent codes.
should I create another data base table or use xml ?
This surely depends on how much entries you have to handle and how often the data will change.
Is it easier to you to exchange the xml-file or to update the database?
But as if the database is already present i would propose to use it. You don’t have to deal with persistency and such things if using the database.
But nevertheless it is an endless conflict of what to use. Both ways work. Both have advantages and disadvantages.