Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm making an Android application, and try to get information from Facebook and insert it to the table on SQLite database.

I've got information successfully, but could not insert to the database properly. It is occurred that database is locked.

It seems that classes, which extend from BaseRequestListener, work in background thread, so several threads accessed to the database simultaneously and an error occurred.

How can I resolve that problem? Please give me some tips.

public class FacebookData extends Activity {

    private Facebook facebook = new Facebook("**********");
    private AsyncFacebookRunner mAsyncRunner;
    private AsyncFacebookRunner mAsyncRunner2;
    private AsyncFacebookRunner mAsyncRunner3;

    private int aboutUser_s = 0;
    private int interests_s = 0;
    private int activities_s = 0;

    CreateTableHelper helper = null;
    SQLiteDatabase db = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.facebookdata);

        SessionStore.restore(facebook, this);

        facebook.authorize(this, new String[] { "offline_access",
                "publish_stream", "read_stream", "user_about_me",
                "user_birthday", "user_checkins", "user_education_history",
                "user_work_history", "user_interests", "user_status",
                "user_hometown", "user_location", "user_likes",
                "user_activities", "user_events", "user_groups" },
                new DialogListener() {
                    @Override
                    public void onComplete(Bundle values) {

                        helper = new CreateTableHelper(FacebookData.this);

                        if (aboutUser_s == 0) {
                            mAsyncRunner = new AsyncFacebookRunner(facebook);
                            mAsyncRunner.request("me",
                                    new RequestListenerAboutUser());
                        }

                        if (aboutUser_s == 1 && interests_s == 0) {
                            mAsyncRunner2 = new AsyncFacebookRunner(facebook);
                            mAsyncRunner2.request("me/interests",
                                    new RequestListenerInterests());
                        }
                        if (interests_s == 1 && activities_s == 0) {
                            mAsyncRunner3 = new AsyncFacebookRunner(facebook);
                            mAsyncRunner3.request("me/activities",
                                    new RequestListenerActivities());
                        }
                    }

                    @Override
                    public void onFacebookError(FacebookError error) {
                    }

                    @Override
                    public void onError(DialogError e) {
                    }

                    @Override
                    public void onCancel() {
                    }
                });

    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        facebook.authorizeCallback(requestCode, resultCode, data);
    }

    public class RequestListenerAboutUser extends BaseRequestListener {

        public void onComplete(final String response, final Object state) {

            db = helper.getWritableDatabase();
            try {
                db = helper.getWritableDatabase();
                db.beginTransaction();
                // process the response here: executed in background thread
                JSONObject json = Util.parseJson(response);
                final String name = json.getString("name");
                final String gender = json.getString("gender");

                ContentValues val = new ContentValues();
                val.put("name", name);
                val.put("gender", gender);

                db.insert("facebook", null, val);
                db.setTransactionSuccessful();
                db.endTransaction();
            } catch (JSONException e) {
                Log.w("Facebook-Example",
                        "JSON Error in response" + e.getMessage());
            } catch (FacebookError e) {
                Log.w("Facebook-Example", "Facebook Error: " + e.getMessage());
            }
            status = 1;
            aboutUser_s = 1;
        }
    }

    public class RequestListenerInterests extends BaseRequestListener {
        public void onComplete(final String response, final Object state) {
            try {
                JSONObject json = Util.parseJson(response);
                JSONArray data = json.getJSONArray("data");
                for (int i = 0; i < data.length(); i++) {
                    JSONObject tmp_interest = data.getJSONObject(i);
                    String tmp_name = tmp_interest.getString("name");
                    insertInterests(tmp_name);
                    String tmp_category = tmp_interest.getString("category");
                    insertInterests(tmp_category);
                }

            } catch (FacebookError e) {
                e.printStackTrace();
            } catch (JSONException e) {
                e.printStackTrace();
            }
            interests_s = 1;

        }
    }

    public class RequestListenerActivities extends BaseRequestListener {
        public void onComplete(final String response, final Object state) {
            try {
                JSONObject json = Util.parseJson(response);
                JSONArray data = json.getJSONArray("data");
                for (int i = 0; i < data.length(); i++) {
                    JSONObject tmp_interest = data.getJSONObject(i);
                    String tmp_name = tmp_interest.getString("name");
                    insertInterests(tmp_name);
                }
            } catch (FacebookError e) {
                e.printStackTrace();
            } catch (JSONException e) {
                e.printStackTrace();
            }
            activities_s = 1;
        }
    }

    public void insertInterests(String key) {

        try {
            /***
            Access to database and insert String key to the table
            ***/
        } catch (Exception e) {
        }

    }

}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.