Memory management when using sqlite database in iphone - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T09:15:31Zhttp://stackoverflow.com/feeds/question/434988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone3Memory management when using sqlite database in iphonelostInTransit2009-01-12T10:05:15Z2009-11-21T02:16:41Z
<p>Hi</p>
<p>My application makes use of a SQLite database to store the user's inputs. The number of records in the input would go to around 100 records and I have a lot of SQL operations going on in the application.</p>
<p>When I run the application with Object Allocations, it shows the sqlite library libsqlite3.0.dylib using up a lot of memory. Does the libsqlite framework lead to memory leakage? What is the best way to communicate with database? Having a lot of sql calls is increasing the memory usage of my app.</p>
<p>Can someone please let me know what the best way to use sqlite in an app effectively. (I am using the SQLiteBooks example as the reference)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/435065#4350655Answer by Stephan Burlot for Memory management when using sqlite database in iphoneStephan Burlot2009-01-12T10:45:04Z2009-01-12T10:45:04Z<p>Sqlite uses a cache for requests. Close & reopen the database from time to release cache memory.</p>
<p>You shouldnt care unless your memory requirements are high. </p>
<p>You can catch critical conditions in the <strong>UIApplicationDelegate</strong> method <strong>applicationDidReceiveMemoryWarning</strong> or <strong>UIViewController</strong> delegate method <strong>didReceiveMemoryWarning</strong></p>
<p>If one of these methods is called, close & reopen the database.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/435120#4351204Answer by Stephen Darlington for Memory management when using sqlite database in iphoneStephen Darlington2009-01-12T11:09:53Z2009-01-12T11:09:53Z<p>I've not seen any memory leaks caused by sqlite. It does use a reasonable chunk of memory, but think of how much code you'd need to write and data you'd need to cache to do the same thing...</p>
<p>The best advice is to use efficient SQL and reset your statement handles as soon as possible. Finalizing your prepared statements might also help, though I've not found the need to do that.</p>
<p>People often recommend periodically closing and reopening the database. While this won't hurt I've not seen any practical benefit myself.</p>
<p>Finally, on the sqlite website you'll see talk of <a href="http://sqlite.org/c3ref/release_memory.html" rel="nofollow">functions to manage memory</a>. These sound quite seductive until you realise they're optional and are not enabled in the default build on the iPhone.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/435632#4356322Answer by Doug Currie for Memory management when using sqlite database in iphoneDoug Currie2009-01-12T14:48:16Z2009-01-12T14:48:16Z<p>There are also <a href="http://www.sqlite.org/pragma.html#modify" rel="nofollow">PRAGMAs to modify the cache size</a>.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/435679#4356790Answer by Justin Williams for Memory management when using sqlite database in iphoneJustin Williams2009-01-12T15:04:03Z2009-01-12T15:04:03Z<p>I've seen memory usage spike before when I had a relatively large database because of poor indexing. If you add a few well thought out indexes to your database, it is a quick and easy way to get memory usage back in the real world.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/435789#4357892Answer by Brad Larson for Memory management when using sqlite database in iphoneBrad Larson2009-01-12T15:38:50Z2009-01-12T15:38:50Z<p>I've had memory usage shoot up in SQLite when doing many INSERTs (> 1000) in a row. Write performance was also slow. These issues were almost completely eliminated by wrapping the loop doing the INSERTs in a transaction. I posted some sample code for this in response to <a href="http://stackoverflow.com/questions/429655/using-pointers-in-objective-c-for-nsmutablearray-objects#431213">this question</a>.</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/990777#9907770Answer by Unfalkster for Memory management when using sqlite database in iphoneUnfalkster2009-06-13T14:28:11Z2009-06-13T14:28:11Z<p>Sorry I'm not "well reputed" enough to make a comment or up vote but I just wanted to say that the pragma thing worked for me :</p>
<p>I have a database which is basically composed of 200 elements, and the database file is about 2.1mb. </p>
<p>With the default cache-size (2000 pages - see sqlite website), after doing my queries (getting all the elements actually), I discovered with the Object Allocation Intrument tool that I had a little more than 2mb memory allocated by (I guessed) sqlite. This could mean that all the elements have been cached by sqlite, couldn't it ?</p>
<p>With a cache size of 100 pages ("PRAGMA cache-size = 100"), this quantity was reduced to <em>900kb</em> !!</p>
<p>So, thank you for the tip !</p>
http://stackoverflow.com/questions/434988/memory-management-when-using-sqlite-database-in-iphone/1774290#17742900Answer by Carl Coryell-Martin for Memory management when using sqlite database in iphoneCarl Coryell-Martin2009-11-21T02:16:41Z2009-11-21T02:16:41Z<p>You <strong>really</strong> want to limit the cache size of sqlite in iphone applications. When you launch your application and initialize your database run a command like:</p>
<pre><code>const char *pragmaSql = "PRAGMA cache_size = 50";
if (sqlite3_exec(database, pragmaSql, NULL, NULL, NULL) != SQLITE_OK) {
NSAssert1(0, @"Error: failed to execute pragma statement with message '%s'.", sqlite3_errmsg(database));
}
</code></pre>
<p>this will prevent sqlite from caching your queries and slowly consuming all of your memory.</p>