Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8561153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T16:26:19+00:00 2026-06-11T16:26:19+00:00

I was wondering if someone could explain why running sql on the android platform

  • 0

I was wondering if someone could explain why running sql on the android platform inside of a transaction is much, much faster. For instance some code such as:

SQLiteDatabase db = dbHelperExt.getWritableDatabase();
db.beginTransaction();
try {
    ... // some sql inserting/updating/deleting
    db.setTransactionSuccessful();
} finally {
    db.endTransaction();
}

The speed increase for me has been multiples of times faster when dealing with hundred of inserts and I was mainly curious as to why this is. Also, I haven’t noticed the same sort of increase when dealing with php/myqsl, what’s the deal?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T16:26:20+00:00Added an answer on June 11, 2026 at 4:26 pm

    Whenever you perform an operation towards your SQLiteDatabase, a transaction is opened by default, which takes care of opening the file, getting the db object, performing the request and releasing the access to the file.
    Moreover as you may notice, the first actions are the heavier to the system.
    If you don’t merge different operations executed at the same time in an unique transaction, one will be created for each operation (ie.: 10 operations = 10 transactions with all the work of each of them).

    When you use 1 transaction for all you perform 95% of the heavier operations just once.
    The only downside of that could be that if one of your requests fails, the rest will be canceled. But to me, this is actually an advantage.

    EDIT: Here you have further detailed info.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if someone could explain how the following code works: public interface
I am wondering if someone could explain this line of code of DB2 in
i was just wondering if someone could explain this code for me so i
I was wondering if someone could explain to me what the line of code
I was wondering if someone could explain to me how to make a simple
I am wondering if someone could explain how I can utilise tags in an
Wondering if someone could please explain the difference between these two queries and advise
Just wondering if someone could help me with a very simple SQL query. I
I was wondering if someone could provide some insight to as why when I
I'm wondering if someone could look over my code. I'm trying to pass a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.