Не лезть в базу из двух разных процессов (потоков) одновременно. Работа с sqlite напрямую? Какой код это вызвал? Можно сделать методы обращения к DAO синхронизированными и единую точку входа
Только из этой точки этого потока идёт вход
Вот тут все верно пишут I think you have forgotten to close the database, or another thread is writing to the database when you are trying to write to it. SQLite locks the database when it is writing to it to avoid corruption if another entity tries to write to the same database at the same time. Android, will only show a error in log cat, and the query you supplied will be just forgotten... So, I recommend: You only access the database from one SQLOpenHelper You make sure you close all instances of database helpers once you have finished with them You make sure you always end transactions with endTransaction() also if you do not set them successful (i.e. if you want to roll 'em back), in case you use transactions
Оберните код в теги: 3 символа ` до и после кода (в случае одиночной конструкции достаточно 1 ` с обеих сторон). Спасибо!
Стоит после каждой операции закрывать?
Транзакцию да. А хелпером просто пользуемся. Строго одним. И в классе репозитории можно все методы сделать synchronized
Посмотри на сайте startandroid примеры работы с базой, примерно в первых 20 уроках несколько есть. У него все работало
Обсуждают сегодня