-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
there is no difference (records are returned in ascending order) between
objectStore(STORE_NAME).openCursor(autoContinue = true, direction = Cursor.Direction.Previous).collect { cursor ->
and
objectStore(STORE_NAME).openCursor(autoContinue = true, direction = Cursor.Direction.Next).collect { cursor ->
How to get results from the end? (like last record for example)
the same happens with openKeyCursor (direction doesn't work, so I have to loop thru all elements to find max(id) and use it as an id for next insert, because autoincrement doesn't work either (other issue) )
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels