We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: I encountered a crash while running the application due to an SQLite error.
SELECT * FROM CustomAttributes WHERE type = ? AND key IN (?, ?, ..., ?).
SELECT * FROM CustomAttributes WHERE type = ? AND key IN (?, ?, ..., ?)
The crash seems related to exceeding the maximum number of SQL variables allowed in a query.
Steps to Reproduce: I'm not sure if it is the specific scenario that causes this, but:
Stack Trace:
android.database.sqlite.SQLiteException: too many SQL variables (code 1 SQLITE_ERROR)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description:
I encountered a crash while running the application due to an SQLite error.
SELECT * FROM CustomAttributes WHERE type = ? AND key IN (?, ?, ..., ?)
.The crash seems related to exceeding the maximum number of SQL variables allowed in a query.
Steps to Reproduce:
I'm not sure if it is the specific scenario that causes this, but:
Stack Trace:
The text was updated successfully, but these errors were encountered: