jldupont
jldupont

Reputation: 96716

GWT library for indexedDB

Is there a GWT library for HTML5 indexedDB functionality?

Or, alternatively, is there a Javascript one I could wrap for GWT?

Upvotes: 2

Views: 1262

Answers (2)

Polla A. Fattah
Polla A. Fattah

Reputation: 829

I tried to write it with JSNI but it was useless because of the lack of support by browsers and different "strange" behaviors. Then I emulate is by using java Maps it has some essence of the indexedDB but not perfect solution

also now there is http://code.google.com/p/indexeddb-gwt which seems to be promising

Upvotes: 1

Adrian B.
Adrian B.

Reputation: 4363

There is a project on Google Code, but it looks like there is nothing there. You might want to contact its owner and ask what the state of the project is:

http://code.google.com/p/gwt-indexeddb/

Or just role on your own using JSNI...

Upvotes: 0

Related Questions