summaryrefslogtreecommitdiffstats
path: root/tools/page_cycler/database/select-transactions/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'tools/page_cycler/database/select-transactions/index.html')
-rw-r--r--tools/page_cycler/database/select-transactions/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/page_cycler/database/select-transactions/index.html b/tools/page_cycler/database/select-transactions/index.html
new file mode 100644
index 0000000..bfd0b39
--- /dev/null
+++ b/tools/page_cycler/database/select-transactions/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML>
+<html>
+<title>Select transactions</title>
+<script src="../head.js"></script>
+<script src="../common.js"></script>
+<script>
+var idCounter = 0;
+
+function transactionCallback(tx) {
+ tx.executeSql('SELECT * FROM Test WHERE ID = ?', [idCounter++],
+ function(tx, data) {}, function(tx, error) {});
+}
+</script>
+
+<body>
+<script>
+ runPerformanceTest({
+ dbName: "SelectTransactions",
+ readOnly: false,
+ insertRowsAtSetup: true,
+ transactionCallback: transactionCallback,
+ customRunTransactions: null
+ });</script>
+</body>
+</html>