android can single instance of SQLiteDatabase mana

2019-07-18 07:22发布

I need to do writing into the database from different AsyncTask threads but the problem is that we need to be sure that at one time only one thread should be in the process of writing into the db? My question is if i use the singleton pattern in making the single instance of SQLiteDatabase object all over the application,will that single instance manage the synchronization between different threads or not ? Thanks

1条回答
我想做一个坏孩纸
2楼-- · 2019-07-18 07:53

My question is if i use the singleton pattern in making the single instance of SQLiteDatabase object all over the application,will that single instance manage the synchronization between different threads or not ?

Yes, it will.

查看更多
登录 后发表回答