Shouldn't we be seeing some of your code in the stacktrace? After all, #openDatabase only gets called in response to you accessing a DB.
The only way I can see that the OpenDatabase would recur is if you have setup an UncaughtExceptionHandler that is attempting to read/ write something to a database when it traps a failure. William On Oct 18, 1:10 pm, Mark Carter <[email protected]> wrote: > Can anyone explain the stacktrace to me? > > It looks like openDatabase() is calling itself in a never-ending loop (line > 975) and then this throws a StackOverflowError which is caught in the > openDatabase(line 916) method and then logged. Is that right? But then why > does the stacktrace stop > at java.lang.AbstractStringBuilder.append0(AbstractStringBuilder.java:132) ? > > Another thing: I don't see in the source where openDatabase() is recursively > calling itself. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

