Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. checkDB();
  2.  
  3. function checkDB(){
  4. var db = window.openDatabase("xRate", "1.0", "Database", 1000);
  5. db.transaction(xrateQueryPound);
  6. }
  7.  
  8. function xrateQueryPound(tx){
  9.  
  10. pound = tx.executeSql('SELECT xrate FROM XRATES WHERE currency = "pound"');
  11. return pound;
  12. }
  13.  
  14. var pound = xrateQueryPound();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement