What is the maximum size of a web SQL database in iOS (Safari) on an iPad? What about LocalStorage?

What is the maximum data size when using HTML5 Web SQL to store data locally on an iPad?

When you achieve this, just ask the user to increase it? Is this a simple yes / no permission request? If so, what is the hard limit (beyond which there is not even the possibility of a user allowing him to expand)?

Does LocalStorage work the same?

+5
source share
3 answers

WEB SQL, Mobile Safari, 50 . 5 , , , , db, db.

var theBiggestDB = openDatabase('databaseName', '1.0', 'My Database', 50*1024*1024);

: fooobar.com/questions/185535/...

+4

HTML5 50 . ( 50 )

CACHE MANIFEST

CACHE:
icon.gif
font.ttf
index.htm
5mb.mp4
7_4mb.mp4
19mb.mp4
19_1mb.mp4

: " , "

( 50 )

CACHE MANIFEST

    CACHE:
    icon.gif
    font.ttf
    index.htm
    # 5mb.mp4
    7_4mb.mp4
    19mb.mp4
    19_1mb.mp4

50 .

iPad, iPad 2, iPad

WEB SQL- .

+1

After 5 MB, I think it tells the user if they want to allocate more space. This is for WebSQL.

There is no maximum size limit, as I have seen.

0
source

All Articles