Skip to content

Hello World

David Fahlander edited this page Apr 15, 2014 · 16 revisions
var db = new Dexie("FriendDatabase");
db.version(1).stores({
    friends: "++id,name,age,isCloseFriend"
});
db.open();
db.friends.add({name: "Josephine", age: 21, isCloseFriend: true}).then(function(){
    db.friends.where("name").equalsIgnoreCase("josephine").each(function(friend) {
        console.log("Found close friend: " + JSON.stringify(friend));
    });
});

Clone this wiki locally