Search code examples
androidinsertandroid-contentprovider

Multiple rows insert with ContentProvider


I need to make insert of few rows in one transaction. Can I do it with ContentProvider?


Solution

  • 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.