Dexie.DataError

Inheritance Hierarchy

  • Error

    • Dexie.DexieError

      • Dexie.DataError

Description

An index property (or primary key) was of the wrong type (not an indexable). This happens when:

  • ...adding a new object to a table where its primary key is not an indexable type)

  • ...querying by index, where the argument is not an indexable type)

Sample


const db = new Dexie('testdb');
db.version(1).stores({
    foo: 'id,bar'
});

db.foo.put({id: null}); // fails with DataError because null is not indexable.
db.foo.put({id: 1, bar: null}); // succeeds but won't generate any "bar" index.
db.foo.where('bar').equals(undefined).toArray(); // Fails with DataError since undefined is not indexable.

Sample using Promise.catch()

Sample: switch(error.name)

Properties

name
Will always be Dexie.errnames.Data === "DataError"

message

Detailed message

inner?

Inner exception instance (if any)

stack

Can be present if the error was thrown. If signaled, there wont be any call stack.