HTML5 database storage (SQL lite) - few questions

前端 未结 5 843
一生所求
一生所求 2020-11-30 01:51

Hy there,

I can\'t find enough beginner resources on the web about HTML5 database storage usage examples (CRUD)

I\'m opening(creating) my DB like this:

5条回答
  •  既然无缘
    2020-11-30 02:36

    It is supported on iOS safari,chrome and some latest version of opera....it's not yet adopted by IE and Firefox that's it......what more one can ask than local db on browser which has relational db system...so u can query it easily and handle complex data....which is very tougher in key vale based systems..

    I remember reading it even supports upto one gb.i am not sure....

    Note:

    1)I'd like to mention one point there is a IDE called Dashcode which let's u build web apps that looks like iOS native.even there also web SQL is used.

    2)actually web SQL is a implementation of SQLite on browsers.

    3)SQLite is most prefered in both iOS and android as db for native code..

    The drawbacks of SQLite:

    The Lack of concurrency support but which is not a problem in browser as it's gonna be used by single user at a time..this is a case also in mobile.

    Conclusions:

    Web Sql is abandoned by w3 that's a sad thing so we've to explore other options.

提交回复
热议问题