↧
Android SQLite tip 1 – Wrap batches of writes in a transaction
I’ve been working on the Shhmooze Android app. When the app is first run there are quite large amounts of data that need to be downloaded and persisted to an Android SQLLite db on the device(around...
View ArticleAndroid SQLite Tip 2 – Use compiled SQL statements
In my last article I talked about SQL Lite inserts on Android being optimised using a transaction. Another method I’ve found that speeds things up dramatically is to use compiled SQL statements with...
View Article