diff options
Diffstat (limited to 'tools/page_cycler/database/delete-transactions/index.html')
-rw-r--r-- | tools/page_cycler/database/delete-transactions/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/page_cycler/database/delete-transactions/index.html b/tools/page_cycler/database/delete-transactions/index.html new file mode 100644 index 0000000..b5e5651 --- /dev/null +++ b/tools/page_cycler/database/delete-transactions/index.html @@ -0,0 +1,26 @@ +<!DOCTYPE HTML> +<html> +<title>Delete transactions</title> +<script src="../head.js"></script> +<script src="../common.js"></script> +<script> +var idCounter = 0; + +function transactionCallback(tx) { + tx.executeSql('DELETE FROM Test WHERE ID = ?', [idCounter++], + function(tx, data) {}, function(tx, error) {}); +} +</script> + +<body> +<script> + runPerformanceTest({ + dbName: "DeleteTransactions", + readOnly: false, + insertRowsAtSetup: true, + transactionCallback: transactionCallback, + customRunTransactions: null + }); +</script> +</body> +</html> |