summaryrefslogtreecommitdiffstats
path: root/tools/page_cycler/database/update-transactions/index.html
blob: 75d3c570cca18eb6699deccac8d62e6dbba3d8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html>
<title>Update transactions</title>
<script src="../head.js"></script>
<script src="../common.js"></script>
<script>
var randomString = getRandomString();
var idCounter = 0;

function transactionCallback(tx) {
  tx.executeSql('UPDATE Test SET Foo = ? WHERE ID = ?',
                [randomString, idCounter++],
                function(tx, data) {}, function(tx, error) {});
}
</script>

<body>
<script>
  runPerformanceTest({
    dbName: "UpdateTransactions",
    readOnly: false,
    insertRowsAtSetup: true,
    transactionCallback: transactionCallback,
    customRunTransactions: null
  });
</script>
</body>
</html>