Situations where SQLite is good to use
- SLite works well for websites with fewer than 100'000 hits/day.
- SQLite database require no administration.
SQLite is a good choice for devices or services that must work
unattended and without human support. SQLite is a good fit for use
in cell phones or PDAs.
- It can be used as a replacement for ad hoc disk files.
- It is well suited for internal or temporary databases
- Experienced SQL users can employ the command-line sqlite
program to analyze miscellaneous datasets.
|
Situations, where other RDBMS may work better
- If many client programs accesse a common database over a
- If you have a high-volume Websites
- If you use a very large dataset larger than a few dozen GB of data.
- SQLite uses reader/writer locks on the entire
database file. This could be a problem if an application requires
high concurrency.
|