SimpleNoSQL
SimpleNoSQL copied to clipboard
A simple NoSQL client for Android. Meant as a document store using key/value pairs and some rudimentary querying. Useful for avoiding the hassle of SQL code.
Today I've received the following crash when the app tried to delete some entities. It's the first time I am receiving this error, I did not change anything in the...
In certain cases I get reports of the following error, however, I am unable to reproduce it reliably right now. I am not sure if it has to do directly...
As "compile" is going to be deprecated end-2018, this PR replaces with "implementation" that is the new usage.
The retrieveresults method's name has been changed to retrievedmethods without updating the readme file.
```java NoSQL.with(context).using(SampleBean.class) .bucketId("bucket") .entityId("entityId") .retrieve(new RetrievalCallback() { public void retrieveResults(List entities) { // Display results or something SampleBean firstBean = entities.get(0).getData(); // always check length of a list first... }...
Any ideas how to prevent this from crashing? We have no control over this code from the app. ``` Fatal Exception: android.database.sqlite.SQLiteException: table simplenosql already exists (code 1) ################################################################# Error...
Getting random crashes due to database lock, even when I' writing only once in a bucket on a activity Crash Log `android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5) at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)...
It may be useful for testing or an app that has transient data to have an in memory datastore rather than relying on sqlite3.
It would be useful if SimpleNoSQL could have the ability to `delete` multiple entities from a given bucket by means of the `filter` operation.