I have to provide synchronization when inserting, querying, updating and deleting items from a database. As far as I understand beginTransaction()
and beginTr
Yes, it makes app smooth.Because SQLite consider one cursor as one transaction, so if we use begin transaction() before we insert big amount of data, then use setTransactionSuccessful() second, then endTransaction() in finally, SQLite will consider this insert event as one transaction, instead of hundreds of transactions.