You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2026. It is now read-only.
If a db error fires on IndexedDB vs sqlite, the client will receive different error codes even though NoSQLProvider in theory abstracts away the differences between the providers.
If a db error fires on IndexedDB vs sqlite, the client will receive different error codes even though NoSQLProvider in theory abstracts away the differences between the providers.
For example, if the device is out of storage:
Sqlite: QUOTA_ERR = '4', (from sqlite/util/WebSqlErrorCode.java)
IndexedDB: QuotaExceededError, (from https://developer.mozilla.org/en-US/docs/Web/API/IDBRequest/error)