Reputation: 11
I am looking for a super-light weight open-source database engine (could be a library that mimics one) to be packaged part of a tiny PHP script distributed to people without sudo
access. Basic CRUD, no need for any complicated implementations with string search, etc.
I found txtSQL (uses flat files, which I believe is the way to go) but hesitant to use it given the last time it was updated (2005-03).
Suggestions anyone?
Upvotes: 0
Views: 1675
Reputation: 3091
sqlite is about as light as you can get and it does everything via text files.
Upvotes: 0