How to add user customized data to database?

Posted by CSharperWithJava on Stack Overflow See other posts from Stack Overflow or by CSharperWithJava
Published on 2010-05-09T18:48:09Z Indexed on 2010/05/09 18:58 UTC
Read the original article Hit count: 179

Filed under:
|
|
|

I am trying to design a sqlite database that will store notes. Each of these notes will have common fields like title, due date, details, priority, and completed.

In addition though, I would like to add data for more specialized notes like price for shopping list items and author/publisher data for books.

I also want to have a few general purpose fields that users can fill with whatever text data they want.

How can I design my database table in this case?

I could just have a field for each piece of data for every note, but that would waste a lot of fields and I'd like to have other options and suggestions.

© Stack Overflow or respective owner

Related posts about database-design

Related posts about sqlite