Appropriate Uses for SQLite
sqlite.org·4d·
Discuss: Hacker News
🗃️SQLite
Preview
Report Post

SQLite is not directly comparable to client/server SQL database engines such as MySQL, Oracle, PostgreSQL, or SQL Server since SQLite is trying to solve a different problem.

Client/server SQL database engines strive to implement a shared repository of enterprise data. They emphasize scalability, concurrency, centralization, and control. SQLite strives to provide local data storage for individual applications and devices. SQLite emphasizes economy, efficiency, reliability, independence, and simplicity.

SQLite does not compete with client/server databases. SQLite competes with fopen().

  • Embedded devices and the internet of things

Because an SQLite database requires no administration, it works well in devices that must operate without expert h…

Similar Posts

Loading similar posts...