From the doc:
http://developer.android.com/reference/android/database/DatabaseUtils.InsertHelper.html
What does this line means?
but compile the SQL insert statement only once,
Please explain, i am not able to understand this.
Regards,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
if you do
each time you call
insertAndroid will create a new SQLiteStatement. If you do the same with an InsertHelper it creates only 1 statement and reuses that which may be faster.