cursor.js
No description.

File Location

/goog/db/cursor.js

Classes

goog.db.Cursor
Creates a new IDBCursor wrapper object. Should not be created directly, access cursor through object store.

Public Protected Private

Enumerations

Global Functions

goog.db.Cursor.openCursor&request.onerror()
No description.
code »
goog.db.Cursor.openCursor&request.onsuccess()
No description.
code »
goog.db.Cursor.openCursor(sourceopt_rangeopt_direction) !goog.db.Cursor
Opens a value cursor from IDBObjectStore or IDBIndex over the specified key range. Returns a cursor object which is able to iterate over the given range.
Arguments:
source : !(IDBObjectStore | IDBIndex)
Data source to open cursor.
opt_range : !goog.db.KeyRange=
The key range. If undefined iterates over the whole data source.
opt_direction : !goog.db.Cursor.Direction=
The direction. If undefined moves in a forward direction with duplicates.
Returns: !goog.db.Cursor  The cursor.
code »

Directory db

File Reference