aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js')
-rw-r--r--tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js b/tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js
deleted file mode 100644
index 2171fb028e..0000000000
--- a/tests/auto/declarative/qdeclarativesqldatabase/data/reopen1.js
+++ /dev/null
@@ -1,16 +0,0 @@
-.import QtQuick.LocalStorage 2.0 as Sql
-
-function test() {
- var r="transaction_not_finished";
- var db = Sql.openDatabaseSync("QmlTestDB-reopen", "1.0", "Test database from Qt autotests", 1000000);
-
- db.transaction(
- function(tx) {
- tx.executeSql('CREATE TABLE IF NOT EXISTS Greeting(salutation TEXT, salutee TEXT)');
- tx.executeSql('INSERT INTO Greeting VALUES(?, ?)', [ 'hello', 'world' ]);
- r = "passed";
- }
- );
-
- return r;
-}