A Cordova/PhoneGap plugin to open and use sqlite databases on Android/iOS/Windows Universal(8.1)/WP(7/8) with HTML5/Web SQL API
db.transaction(function(tx) {
tx.executeSql("select distinct contractor_name from construction_range;", [], function(tx,res) {
alert(JSON.stringify(res));
});
});
}