delete method
The delete()
method of the IDBCursor
interface returns an IDBRequest object, and, in a separate thread,
deletes the record at the cursor's position, without changing the cursor's
position.
Once the record is deleted, the cursor's value is set to null.
Be aware that you can't call delete()
(or
IDBCursor.update) on cursors obtained from
IDBIndex.openKeyCursor. For such needs, you have to use
IDBIndex.openCursor instead.
Implementation
external IDBRequest delete();