I\'m using GreenDAO for database handling in Android. When performing many database changes (> 15.000) I get this error Message:
The connection pool f
I got this message when I want to select a query on a table which is used on a transaction without ended transaction before. Problem solved after executing endTransaction() on finally block of transaction.
endTransaction()