HiveBrain v1.2.0
Get Started
← Back to all entries
patternsqlModerate

Limits of SQLite

Submitted by: @import:stackexchange-dba··
0
Viewed 0 times
sqlitelimitsstackoverflow

Problem

How far can one take the sqlite database from a single-user , embedded , prototype oriented db engine ?

Solution

Check out https://stackoverflow.com/q/784173/27310 to get an idea of how big SQLite databases can get in theory without performance problems. However, I'd suggest that you use a good database abstraction layer so you don't have to worry about the underlying database at all. That way, once you hit SQLite's working limits, you can switch over to a non-embedded RDBMS without much work.

Context

StackExchange Database Administrators Q#76, answer score: 17

Revisions (0)

No revisions yet.