1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the examples of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #include <QtGui>
|
---|
43 | #include <QtSql>
|
---|
44 |
|
---|
45 | #include "../connection.h"
|
---|
46 |
|
---|
47 | void initializeModel(QSqlRelationalTableModel *model)
|
---|
48 | {
|
---|
49 | //! [0]
|
---|
50 | model->setTable("employee");
|
---|
51 | //! [0]
|
---|
52 |
|
---|
53 | model->setEditStrategy(QSqlTableModel::OnManualSubmit);
|
---|
54 | //! [1]
|
---|
55 | model->setRelation(2, QSqlRelation("city", "id", "name"));
|
---|
56 | //! [1] //! [2]
|
---|
57 | model->setRelation(3, QSqlRelation("country", "id", "name"));
|
---|
58 | //! [2]
|
---|
59 |
|
---|
60 | //! [3]
|
---|
61 | model->setHeaderData(0, Qt::Horizontal, QObject::tr("ID"));
|
---|
62 | model->setHeaderData(1, Qt::Horizontal, QObject::tr("Name"));
|
---|
63 | model->setHeaderData(2, Qt::Horizontal, QObject::tr("City"));
|
---|
64 | model->setHeaderData(3, Qt::Horizontal, QObject::tr("Country"));
|
---|
65 | //! [3]
|
---|
66 |
|
---|
67 | model->select();
|
---|
68 | }
|
---|
69 |
|
---|
70 | QTableView *createView(const QString &title, QSqlTableModel *model)
|
---|
71 | {
|
---|
72 | //! [4]
|
---|
73 | QTableView *view = new QTableView;
|
---|
74 | view->setModel(model);
|
---|
75 | view->setItemDelegate(new QSqlRelationalDelegate(view));
|
---|
76 | //! [4]
|
---|
77 | view->setWindowTitle(title);
|
---|
78 | return view;
|
---|
79 | }
|
---|
80 |
|
---|
81 | void createRelationalTables()
|
---|
82 | {
|
---|
83 | QSqlQuery query;
|
---|
84 | query.exec("create table employee(id int primary key, name varchar(20), city int, country int)");
|
---|
85 | query.exec("insert into employee values(1, 'Espen', 5000, 47)");
|
---|
86 | query.exec("insert into employee values(2, 'Harald', 80000, 49)");
|
---|
87 | query.exec("insert into employee values(3, 'Sam', 100, 1)");
|
---|
88 |
|
---|
89 | query.exec("create table city(id int, name varchar(20))");
|
---|
90 | query.exec("insert into city values(100, 'San Jose')");
|
---|
91 | query.exec("insert into city values(5000, 'Oslo')");
|
---|
92 | query.exec("insert into city values(80000, 'Munich')");
|
---|
93 |
|
---|
94 | query.exec("create table country(id int, name varchar(20))");
|
---|
95 | query.exec("insert into country values(1, 'USA')");
|
---|
96 | query.exec("insert into country values(47, 'Norway')");
|
---|
97 | query.exec("insert into country values(49, 'Germany')");
|
---|
98 | }
|
---|
99 |
|
---|
100 | int main(int argc, char *argv[])
|
---|
101 | {
|
---|
102 | QApplication app(argc, argv);
|
---|
103 | if (!createConnection())
|
---|
104 | return 1;
|
---|
105 | createRelationalTables();
|
---|
106 |
|
---|
107 | QSqlRelationalTableModel model;
|
---|
108 |
|
---|
109 | initializeModel(&model);
|
---|
110 |
|
---|
111 | QTableView *view = createView(QObject::tr("Relational Table Model"), &model);
|
---|
112 | view->show();
|
---|
113 |
|
---|
114 | return app.exec();
|
---|
115 | }
|
---|