[OT] RadioSnj diventa la nuova radio del portale di Tiscali



http://radio.tiscali.it/

Native Json Store

una delle piu' interessanti novità delle nuove versione dei browser basati su HTML 5 è sicuramente l'introduzione di IndexedDB, cioè la gestione di un database json nativo che consentirà di scrivere in javascript cose di questo genere:

 
 
var db = indexedDB.open('books', 'Book store', false);
if (db.version !== '1.0') {
  var olddb = indexedDB.open('books', 'Book store');
  olddb.createObjectStore('books', 'isbn');
  olddb.createIndex('BookAuthor', 'books', 'author', false);
  olddb.setVersion("1.0");
}
// db.version === "1.0";
var index = db.openIndex('BookAuthor');
var matching = index.get('fred');
if (matching)
  report(matching.isbn, matching.name, matching.author);
else
  report(null);
 

var store = db.openObjectStore('Contact');
 
var lincoln = {name: 'Lincoln', number: '7012'};
var contact = store.put(lincoln);
// contact.id === 1
 
var contact = store.get(1);
// contact.name === 'Lincoln'
 
«maggio»
domlunmarmergiovensab
2526272829301
2345678
9101112131415
16171819202122
23242526272829
303112345