localStorage vs SQLite?

jerman1919

New Member
I'm building a Packaged App for Chrome. Looking into my database options, I'm curious if I understand the proper way of using these.With SQLite, I'd create table \[code\]books\[/code\] with the following rows \[code\]_id\[/code\], \[code\]title\[/code\], \[code\]category\[/code\], \[code\]date\[/code\], \[code\]price\[/code\], \[code\]qty_sold\[/code\].With localStorage, I'd create table \[code\]_id\[/code\] with key/pair such as \[code\]1\[/code\], \[code\]x499faj4\[/code\]. Then I'd create table \[code\]title\[/code\] with key/pair \[code\]x499faj4\[/code\], \[code\]book title\[/code\]. Table \[code\]category\[/code\], with \[code\]x499faj4\[/code\], \[code\]fiction\[/code\].I'm not sure if that makes sense. localStorage seems easier to implement but how would I then go about sorting those things to populate a list by category, price or quantity sold for example? Does localStorage make sense in this situation and am I using it properly? Any further suggestions? thanks
 
Back
Top