Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Android: Heavy DB operations with progress dialog

I have a huge array of Strings which I'm trying to insert into the sqlite DB. Due to this, I am using the begintransaction idiom in my doInBackground, which works perfectly. The problem is that the ProgressDialog is not being shown. What could be the problem? Is it because beginTransaction works only in EXCLUSIVE mode? Any help is appreciated. Thanks!

    @Override
    public void onCreate(SQLiteDatabase database) {
        database.execSQL(Constants.CREATE_TABLE_DICT);
        mDatabase = database;
        readFile(R.raw.dict);
        new InitDB().execute();
    }



    public class InitDB extends AsyncTask<Void, Void, Void> {
        InsertHelper ih;
        int wordColumn;
        private ProgressDialog mProgD;

        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            mProgD = ProgressDialog.show(mContext, "", "Wait", true);//NOT BEING SHOWN!
            ih = new InsertHelper(mDatabase, "dictionary");
            wordColumn = ih.getColumnIndex("word");
        }

        @Override
        protected Void doInBackground(Void... params) {
            mDatabase.beginTransaction();
            try {
                String [] ss = mWords.toString().split("\\|");
                for(int i=0; i<ss.length; i++) {
                    ih.prepareForInsert();
                    String word = ss[i];
                    ih.bind(wordColumn, word);
                    ih.execute();
                }

                mDatabase.setTransactionSuccessful();
            } finally {
                mDatabase.endTransaction();
            }

            return null;
        }

        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);
            mProgD.dismiss();
        }
    }

EDIT: Here's where the context comes from:

    //Constructor
    public AppDatabase(Context context) {
        super(context, Constants.DATABASE_NAME, null, Constants.DATABASE_VERSION);
        mContext = context;
    }
share|improve this question
2  
where is mContext coming from? – Donal Rafferty Mar 8 '12 at 17:45
@Donal updated my qn. i strongly believe the problem stems from beginTransaction, setTransactionSuccessful and endTransaction because if I comment those out and use regular execSQL statement, the dialog shows but insertion now becomes painfully slow. – OckhamsRazor Mar 8 '12 at 17:55

marked as duplicate by skaffman, Brad Larson Aug 21 '12 at 19:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

I found the answer! Check out this link. Thanks again for anybody who helped!

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.