I need to make insert of few rows in one transaction. Can I do it with ContentProvider?
On the client side, ContentResolver supports a bulkInsert() method. Those will not necessarily be processed in a single transaction by the ContentProvider, simply because there may not be any transactions performed by the ContentProvider.
ContentResolver
bulkInsert()
ContentProvider