I have developed application using HTML 5 Localstorage.

How can I create a TABLE and populate 10000+ rows before initializing my HTML 5 enabled application.

Please suggest a pattern.

link|improve this question
check my answer. tell me if it doesn't help – N 1.1 Mar 6 '10 at 9:08
would be awesome if this post was tagged with "localStorage" also ;) – JeroenEijkhof May 10 '10 at 1:13
localStorage is a simple key value store, but I believe what OP might want is the local SQL database, not localStorage. – Anurag May 26 '10 at 10:31
sqlite probably help to solve your problem. follow the ans given by N 1.1 for downloading the whole code visit my link blog.developeronhire.com/… hope this will help – Sujeet May 26 '11 at 5:08
feedback

1 Answer

var db = openDatabase('dbname', 'dbversion 1.0', 'description', 64*1024);
db.transaction(function (query){
   query.executeSql('CREATE TABLE IF NOT EXISTS tablename (id unique, value)');
   var rows = 10000, i;
   for(i=0; i < rows; i++){
      query.executeSql('INSERT INTO tablename (id, value) VALUES ('+ i + ', "Stackoverflow")');
   }

   query.executeSql('SELECT * FROM tablename', [], function (query, results) {
      for (i = 0; i < 5; i++) {
         alert(results.rows.item(i).text);
      }
   });
});

//Do magic with your webapp now

The queries accepted are SQLite type. Check the official specification for more.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.