English 中文(简体)
HTML5 Client Storage: WebSqlDatabase vs. WebStorage vs. Indexed Database
原标题:

I have some questions concerning the abilities of client storage in HTML5. From what I ve found so far there are three different possibilities:

  • WebSQLDatabase: Supports client site SQL-Tables, which are stored in a SQLite Database. This standard is discontinued. Does this mean that browsers that currently support this will drop this support in the future?

  • WebStorage and IndexedDB seems quite similar to me. They both offer key/value-store capabilities. Where is the difference?

问题回答

WebSQLDatabase: Does this mean that browsers that currently support this will drop this support in the future?

Ans: After looking at this post, it seems like safari put this work on hold, as they have stopped comments and ping backs. Also refer to this and this, Chrome will surely put current api in deprecated status. In future versions, once IndexedDB API completely implemented, they may drop the support.

WebStorage and IndexedDB.. Where is the difference?

Ans: WebStorage has some storage mechanisms like sessionStorage, localStorage etc. each has key/value pair like storage. localStorage is of HTML5 feature which uses SQLite database, but with one table and two fields (key and value). Whereas using IndexedDB you can create the number of databases with number of tables..

WebSQLDatabase has been dropped because of the main security issue. e.g. cross-origin attack. see





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签