aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/localstorage/localstorage/MyModel.qml
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2016-10-27 16:11:01 +0200
committerNico Vertriest <nico.vertriest@theqtcompany.com>2016-12-12 12:19:09 +0000
commit5ac14981b03c9c73c08194b1eb992107a096f774 (patch)
tree0ffe5223081472d6067135c4c9d435c1a2ad24fb /examples/quick/localstorage/localstorage/MyModel.qml
parentcf4e4899d268b8a39578fc9713fa3c56ceecdf0b (diff)
Example: Improve the localstorage example
- insert/update/delete instead of only insert - database connection and sql handled in Database.js Change-Id: I513b23061e569f4511dd166ed79898db7f628139 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
Diffstat (limited to 'examples/quick/localstorage/localstorage/MyModel.qml')
-rw-r--r--examples/quick/localstorage/localstorage/MyModel.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/examples/quick/localstorage/localstorage/MyModel.qml b/examples/quick/localstorage/localstorage/MyModel.qml
new file mode 100644
index 0000000000..0677ec74d6
--- /dev/null
+++ b/examples/quick/localstorage/localstorage/MyModel.qml
@@ -0,0 +1,35 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:FDL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Free Documentation License Usage
+** Alternatively, this file may be used under the terms of the GNU Free
+** Documentation License version 1.3 as published by the Free Software
+** Foundation and appearing in the file included in the packaging of
+** this file. Please review the following information to ensure
+** the GNU Free Documentation License version 1.3 requirements
+** will be met: http://www.gnu.org/copyleft/fdl.html.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+import QtQuick.LocalStorage 2.0
+import "Database.js" as JS
+
+ListModel {
+ id: listModel
+ Component.onCompleted: JS.dbReadAll()
+}