Advertisement
Guest User

exampleDB

a guest
Dec 3rd, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function dataBaseInsert(type, target, date)
  2. {
  3.         db.transaction(function(transaction){
  4.         var sql='INSERT INTO shots(bulletType, target, date) VALUES(?,?,?)';
  5.         transaction.executeSql(sql, [type, target, date],
  6.             function(){
  7.                 console.log('Bullet hit');
  8.             },function(){
  9.                 console.log('Failed');
  10.             });
  11.     });
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement