This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
By "How?", do you mean how you can add columns to database tables? Any SQL reference will tell you how to do that (look for "ALTER TABLE").
But I don't know what you mean by "dynamic fields", so you might be looking for something completely different.
Edward Durai
Ranch Hand
Joined: Oct 09, 2004
Posts: 223
posted
0
database fields are standard fields. in database i have customfields column also. if add new field. it will be stored into customfields like
<custom custom1="custom field name here" custom2="custom2 field name here" />
I hope you understood
thanks
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35237
7
posted
0
<custom custom1="custom field name here" custom2="custom2 field name here" />
That's not SQL - where is this coming from, and what does it have to do with adding fields? Do you need to interpret this XML structure, and then adapt your DB schema dynamically? That would be more of an XML question (altering the schema would still be done by SQL DDL statements like "ALTER TABLE ADD COLUMN"). [ August 01, 2006: Message edited by: Ulf Dittmer ]