Possible Duplicate:
What are design patterns to support custom fields in an application?
I use SQLite to store my data. I have several columns in the table like id
, title
, description
and notes
. Now I need to extend my data model and keep other 1
, other 2
, ... , other N
fields in database. I want the user to add them dynamically.
I just don't know how to handle the case because the amount of columns in the table is fixed. What's approach for this case?