Is SQLite suitable as a fairly large and secure data warehouse?

I consider using a database a SQLitebig data warehouse (two hundred thousand records per year). I will make many requests, a small number of updates and inserts. I see that it SQLiteworks very fast. Is it SQLitesuitable and safe for this purpose?

+3
source share
1 answer

SQLite is usually not suitable for multiple simultaneous users; It is ideal for use as a single-process embedded storage.

, - , .

, , , PostgreSQL Oracle .

, SQLite, , ( ); , GRANT REVOKE .

+6

All Articles