vote up 0 vote down star

Is there a way to pre allocate my SQLite database to a certain size? Currently I'm adding and deleting a number of records and would like to avoid this over head at create time.

flag
2  
Why do you assume that there is an overhead that you can avoid. Does it even matter for your application if you could? I think you are tying to do "premature optimization" en.wikipedia.org/wiki/…) and from Donald Knuth we learned that "We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." – lothar May 5 at 22:06

1 Answer

vote up 1 vote down check

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, or trigger) is dropped from the database, it leaves behind empty space. This empty space will be reused the next time new information is added to the database. But in the meantime, the database file might be larger than strictly necessary."

Naturally, this isn't the most reliable method. (Also, you will need to make sure that auto_vacuum is disabled for this to work). You can learn more here - http://www.sqlite.org/lang_vacuum.html

link|flag
As I said in my question, this is what I currently doing. But thanks for the auto_vacuum hint! – paul May 5 at 22:39
Glad to help. Another thing that would help you slightly improve the performance of the SQLite db is to make sure that you defragment the db file (especially if you are using windows). – Sam May 6 at 12:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.