Search Results

1
vote

SQLite - pre allocating database size…

There is a hack - Insert a bunch of data into the database till the database size is what you want and then delete the data. This works because: "When an object (table, index …
5
votes

How Scalable is SQLite?

Have you read this SQLite docs - http://www.sqlite.org/whentouse.html ? SQLite usually will work great as th …