Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Yes you should have used a nosql database. Just kidding, better late then never, sqlite is awesome :)
-
You shouldn't worry about what kind of store you use, if it takes off you can just switch to a more appropriate solution. Everything else is just optimizing to early.
-
sqlite is my fav for small offline projects.
Just consider that It shouldnt be used in network or multiuser apps and you must always close the database after use. -
eeee31507yJust because a technology is old it doesn't mean it's bad. All these modern languages, newer frameworks, hipper databases, ..., none are better! They're just newer. As long as you pick the right tool for the right job, it doesn't matter if you program your database in Basic or Excel. Just make sure you can fulfil the requirements!
-
SQLite is the perfect choice for that.
Firefox stores all of the data (bookmarks, history, etc.) in sqlite-format, google-chrome makes some use of it too and the kindle eReader are storing vocabulary with it.
I once did a simple notification android-app using sqlite. Even Android does provide decent built-in support for storing your apps data in sqlite-file rather than the default properties stuff.
Related Rants
Developed my first app using SQLite. Am I late into the game?
rant
net
c#
personal
sqlite
dotnet
project