- GetDatabase называется рекурсивно
- ОТВЕТЫ
- Ответ 1
- Ответ 2
- getDatabase called recursively
- Answers
- IllegalStateException: getDatabase called recursively in Migration even when using databaseWrapper #1546
- Comments
- lukewaggoner-zz commented Mar 12, 2018
- theaircrasher commented Mar 29, 2018
- artemtkachenko commented May 17, 2018 •
- agrosner commented Oct 26, 2018
- agrosner commented Oct 26, 2018
- theaircrasher commented Oct 29, 2018 •
- GetDatabase называется рекурсивно
- ОТВЕТЫ
- Ответ 1
- Ответ 2
- Android getDatabase called recursively error
- Solutions
- IMPORTANT
GetDatabase называется рекурсивно
Мой первый раз задавая вопрос здесь, так что будьте осторожны, Lol.
В любом случае. Я работал над Android, и моя последняя сборка работала безупречно. До вчерашнего дня, когда ИТ дал мне новую рабочую станцию. Начиная с получения этой новой рабочей станции, я продолжаю получать следующую ошибку:
04-11 17:34:53.282: E/AndroidRuntime(789): java.lang.RuntimeException: Unable to start activity ComponentInfo
Если это помогает, я запускаю это на виртуальном устройстве, используя платформу 4.2.2 и уровень API 17.
Я действительно надеюсь, что кто-то может пролить свет на эту ошибку, поэтому я могу остановить разрыв моих волос, Lol.
Если какая-либо другая информация необходима, сообщите мне.
EDIT: добавлено больше logcat
EDIT: Добавлен код, вызывающий ошибку. setDefaultLabel() является виновником.
ОТВЕТЫ
Ответ 1
Попробуйте изменить свой метод setDefaultLabel() на.
. затем в onCreate(. ) просто передайте в него параметр db и избавьтесь от этой строки.
Затем ваш код должен выглядеть следующим образом:
Проблема в существующем коде заключается в том, что onCreate(. ) передается ссылка на открытую/записываемую базу данных, но затем вызывает setDefaultLabel(. ) , которая пытается получить другую доступную для записи ссылку на базу данных.
Ответ 2
Вот мое решение для этого: В Помощнике я переопределяю 2 метода getWritableDatabase() и getReadableDatabase(), как показано ниже: Обратите внимание, что вы не должны закрывать базу данных, она может быть разбита.
Источник
getDatabase called recursively
My first time asking a question here, so be gentle, Lol.
Anyway. Ive been working on an Android and my latest build ran flawlessly.. Until yesterday, when IT gave me a new workstation. Since getting this new workstation, I keep getting the following error:
04-11 17:34:53.282: E/AndroidRuntime(789): java.lang.RuntimeException: Unable to start activity ComponentInfo
If it helps, I am running this in a virtual device, using platform 4.2.2 and API level 17.
I am really hoping that someone can shed some light on this error, so I can stop ripping my hair out, Lol.
If any other information is needed, please let me know.
EDIT: Added more of the logcat
EDIT: Added code causing the error. setDefaultLabel() is the culprit.
Answers
Try changing your setDefaultLabel() method to.
. then in onCreate(. ) simply pass the db parameter into it and get rid of this line.
Your code should then look like this.
The problem in your existing code is that onCreate(. ) is being passed a reference to the open / writeable database but it then calls setDefaultLabel(. ) which attempts to get another writeable reference to the database.
You seem to have a custom insert() method. It likely calls getWritableDatabase() which calls getDatabase() and it will throw this exception since onCreate() is already called in the context of getDatabase() . Just use db.insert() directly where db is the SQLiteDatabase object passed to your onCreate() , without calling getWritableDatabase() . This is essentially the same issue and solution as in all the three questions you linked.
Previously your question had another, prior problem the solution to which is below, with the insert() fix from above included:
Your table does not have the column names you specify in ContentValues .
There’s only name and value columns specified in the CREATE TABLE settings but you’re trying to insert data into columns Username , Password and personId .
It’s also useful to log full exception stack traces (and not just the message), and to read the exceptions wherever you log them.
If I understand your intent correctly, you want either three name-value pair rows like this:
or a table with single row and the given columns:
Источник
IllegalStateException: getDatabase called recursively in Migration even when using databaseWrapper #1546
Comments
lukewaggoner-zz commented Mar 12, 2018
DBFlow Version: 4.1.2
Bug or Feature Request: Recursive Database call
Description: I’m using the Database wrapper to perform a select during a migration (in order to set the value of one column to the value of an associated column), and even though I’m using the Database wrapper provider in migrate() I am getting an IllegalStateException saying that the database is being accessed recursively.
Here’s what I’m doing (in Kotlin):
The text was updated successfully, but these errors were encountered:
theaircrasher commented Mar 29, 2018
Were you able to solve the issue? I am experiencing the same issue. The problem seems to be related to the ForeignKeys (i don’t use stubbed relationships).
artemtkachenko commented May 17, 2018 •
Same issue, I am using 3.1.1
agrosner commented Oct 26, 2018
if you can i’d try 4.2.4. @lukewaggoner where was db accessed recursively? sorry for late reply.
agrosner commented Oct 26, 2018
i.e. what was stacktrace.
theaircrasher commented Oct 29, 2018 •
I am using 4.2.4.
The Table includes an ForeignKey that is defined a follows.
When trying to perform the migration:
internally loadFromCursor is being used.
Here querySingle(DatabaseWrapper database) needs to be used in order to make it work.
Источник
GetDatabase называется рекурсивно
Мой первый раз задавая вопрос здесь, так что будьте осторожны, Lol.
В любом случае. Я работал над Android, и моя последняя сборка работала безупречно. До вчерашнего дня, когда ИТ дал мне новую рабочую станцию. Начиная с получения этой новой рабочей станции, я продолжаю получать следующую ошибку:
04-11 17:34:53.282: E/AndroidRuntime(789): java.lang.RuntimeException: Unable to start activity ComponentInfo
Если это помогает, я запускаю это на виртуальном устройстве, используя платформу 4.2.2 и уровень API 17.
Я действительно надеюсь, что кто-то может пролить свет на эту ошибку, поэтому я могу остановить разрыв моих волос, Lol.
Если какая-либо другая информация необходима, сообщите мне.
EDIT: добавлено больше logcat
EDIT: Добавлен код, вызывающий ошибку. setDefaultLabel() является виновником.
ОТВЕТЫ
Ответ 1
Попробуйте изменить свой метод setDefaultLabel() на.
. затем в onCreate(. ) просто передайте в него параметр db и избавьтесь от этой строки.
Затем ваш код должен выглядеть следующим образом:
Проблема в существующем коде заключается в том, что onCreate(. ) передается ссылка на открытую/записываемую базу данных, но затем вызывает setDefaultLabel(. ) , которая пытается получить другую доступную для записи ссылку на базу данных.
Ответ 2
Вот мое решение для этого: В Помощнике я переопределяю 2 метода getWritableDatabase() и getReadableDatabase(), как показано ниже: Обратите внимание, что вы не должны закрывать базу данных, она может быть разбита.
Источник
Android getDatabase called recursively error
Hi I am trying to populate a database with a series of questions, but I can’t get tables to be populated by the questions to retrieve into the app. I’m getting this error(full error log attached):
java.lang.RuntimeException: Unable to start activity ComponentInfo
I have been trying for the past hour to try and resolve this but I can’t work out how to fix this. I know it’s to do with calling the getWritableDatabase functions in the addQuestions methods but I don’t know what to do to fix it. If anyone has any suggestions that would be much appreciated.
MainActivityQuizBasics
EDITED — implemented suggested changes DBhelper
xml file
Solutions
Your issue(s (as the issue is repeated)) are that you are using methods that will call the getWriteableDatabase and try to open the database via getWritableDatabase before the database has been properly opened.
e.g. in onCreate you call addQuestionsBasics(); that’s where you get the recursion. Instead of using this to refer to the database, you need to pass the SQliteDatabase as passed to the onCreate method to the addQuestionsBasics(); and use that.
As such change addQuestionsBasics(the_question); to
And in the onCreate method change to use :-
You also need the public addQuestionsBasics methods to be able to handle a call with and without the database being provided.
To do this have 2 public void addQuestionsBasics methods with signatures (the shorter with just a question as it’s argument can call the longer version)
IMPORTANT
The above is needs to be repeated throughout for the other tables and for all rows being added and for all the respective methods.
Based on the above (note ONLY 2 questions) using the following in an activity (with the getAllQuestions1 method tweaked to select all rows) :-
Источник