Re: Indexed database API autoIncrement

On Sun, Oct 23, 2011 at 7:20 AM, Futomi Hatano <info@html5.jp> wrote:

> Hello everyone,
>
> I'm not a W3C member, can I send a mail to the list?
>

Yes, this mailing list is open to anyone.

I've tried to use Indexed database API using IE10 PP3 and Chrome 16 dev.
> I found a different behavior between the two.
> I set autoIncrement to true when I created a Object Store as below.
>
> var store = db.createObjectStore(store_name, { keyPath: 'id',
> autoIncrement: true });
>
> Then, I added some records.
>
> IE10 PP3 set the key value of the first recored to 0, while Chrome 16 set
> it to 1.
> Which is correct?
>

This is a good question.  I don't believe that the spec specifies this.

- Kyle

Received on Sunday, 23 October 2011 21:25:24 UTC