javascript - Which version of firefox will support Web SQL? -


i'm developing app needs offline storage sql.

i try:

    if (window.opendatabase) {         window.db = window.opendatabase("app", "", "my app db name", 1024*1024);     }    

this works great on chrome doesn't work on firefox 3.6

what version of firefox support opendatabase?

mozilla have said never implement according thread:

html5 indexeddb, web sql database , browser wars


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -