views:

42

answers:

1

WebKit (Safari 4+ is my focus) has a feature called Web SQL. Web SQL is specified in the W3C draft Currently only the asynchronous flavor is supported.

I have a situation where I want to synchronize couple of operations - writing to database (using CREATE TABLE query and then a loop through INSERT queries) and then reading from the database. How do I do this? I googled and read a lot of tutorials, did not find any explanation of that.

If I can't find answer to this, I shall try Worker feature and if unsuccessful I plan to store the data in webstorage (localstorage) instead.

A: 

Seems that nbody answers this. My current undertanding is that storing a block in localstorage is the best

Michael