Fix db name
This commit is contained in:
parent
7c54a90fbb
commit
ad883cbdab
2 changed files with 6 additions and 1 deletions
|
@ -15,7 +15,7 @@ ApplicationWindow
|
|||
property var db_conn
|
||||
|
||||
Component.onCompleted: {
|
||||
db_conn = LocalStorage.openDatabaseSync("TintDB", "1.0", "Tint storage", 100000)
|
||||
db_conn = LocalStorage.openDatabaseSync("SeaprintDB", "1.0", "Seaprint storage", 100000)
|
||||
db_conn.transaction(function (tx) {
|
||||
tx.executeSql('CREATE TABLE IF NOT EXISTS Favourites (ssid STRING, url STRING)');
|
||||
|
||||
|
|
5
qml/pages/WifiChecker.qml
Normal file
5
qml/pages/WifiChecker.qml
Normal file
|
@ -0,0 +1,5 @@
|
|||
import QtQuick 2.0
|
||||
|
||||
Item {
|
||||
|
||||
}
|
Loading…
Reference in a new issue