Changes

IOS 5 iPhone Database Implementation using SQLite

14 bytes added, 19:38, 2 November 2011
Closing a SQLite Database
When an application has finished working on a database it is important that the database be closed. This is achieved with a call to the sqlite3_close() function, passing through a pointer to the database to be closed:
 
<pre>
sqlite3_close(contactDB);
</pre>
== Summary ==