xref: /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/database/initdb.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /****************************************************************************
2*4882a593Smuzhiyun **
3*4882a593Smuzhiyun ** Copyright (C) 2016 The Qt Company Ltd.
4*4882a593Smuzhiyun ** Contact: https://www.qt.io/licensing/
5*4882a593Smuzhiyun **
6*4882a593Smuzhiyun ** This file is part of the demonstration applications of the Qt Toolkit.
7*4882a593Smuzhiyun **
8*4882a593Smuzhiyun ** $QT_BEGIN_LICENSE:BSD$
9*4882a593Smuzhiyun ** Commercial License Usage
10*4882a593Smuzhiyun ** Licensees holding valid commercial Qt licenses may use this file in
11*4882a593Smuzhiyun ** accordance with the commercial license agreement provided with the
12*4882a593Smuzhiyun ** Software or, alternatively, in accordance with the terms contained in
13*4882a593Smuzhiyun ** a written agreement between you and The Qt Company. For licensing terms
14*4882a593Smuzhiyun ** and conditions see https://www.qt.io/terms-conditions. For further
15*4882a593Smuzhiyun ** information use the contact form at https://www.qt.io/contact-us.
16*4882a593Smuzhiyun **
17*4882a593Smuzhiyun ** BSD License Usage
18*4882a593Smuzhiyun ** Alternatively, you may use this file under the terms of the BSD license
19*4882a593Smuzhiyun ** as follows:
20*4882a593Smuzhiyun **
21*4882a593Smuzhiyun ** "Redistribution and use in source and binary forms, with or without
22*4882a593Smuzhiyun ** modification, are permitted provided that the following conditions are
23*4882a593Smuzhiyun ** met:
24*4882a593Smuzhiyun **   * Redistributions of source code must retain the above copyright
25*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer.
26*4882a593Smuzhiyun **   * Redistributions in binary form must reproduce the above copyright
27*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer in
28*4882a593Smuzhiyun **     the documentation and/or other materials provided with the
29*4882a593Smuzhiyun **     distribution.
30*4882a593Smuzhiyun **   * Neither the name of The Qt Company Ltd nor the names of its
31*4882a593Smuzhiyun **     contributors may be used to endorse or promote products derived
32*4882a593Smuzhiyun **     from this software without specific prior written permission.
33*4882a593Smuzhiyun **
34*4882a593Smuzhiyun **
35*4882a593Smuzhiyun ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36*4882a593Smuzhiyun ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37*4882a593Smuzhiyun ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38*4882a593Smuzhiyun ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39*4882a593Smuzhiyun ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40*4882a593Smuzhiyun ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41*4882a593Smuzhiyun ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42*4882a593Smuzhiyun ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43*4882a593Smuzhiyun ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44*4882a593Smuzhiyun ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45*4882a593Smuzhiyun ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
46*4882a593Smuzhiyun **
47*4882a593Smuzhiyun ** $QT_END_LICENSE$
48*4882a593Smuzhiyun **
49*4882a593Smuzhiyun ****************************************************************************/
50*4882a593Smuzhiyun 
51*4882a593Smuzhiyun #ifndef INITDB_H
52*4882a593Smuzhiyun #define INITDB_H
53*4882a593Smuzhiyun 
54*4882a593Smuzhiyun #include <QtSql>
55*4882a593Smuzhiyun 
addBook(QSqlQuery & q,const QString & title,int year,const QVariant & authorId,const QVariant & genreId,int rating)56*4882a593Smuzhiyun void addBook(QSqlQuery &q, const QString &title, int year, const QVariant &authorId,
57*4882a593Smuzhiyun              const QVariant &genreId, int rating)
58*4882a593Smuzhiyun {
59*4882a593Smuzhiyun     q.addBindValue(title);
60*4882a593Smuzhiyun     q.addBindValue(year);
61*4882a593Smuzhiyun     q.addBindValue(authorId);
62*4882a593Smuzhiyun     q.addBindValue(genreId);
63*4882a593Smuzhiyun     q.addBindValue(rating);
64*4882a593Smuzhiyun     q.exec();
65*4882a593Smuzhiyun }
66*4882a593Smuzhiyun 
addGenre(QSqlQuery & q,const QString & name)67*4882a593Smuzhiyun QVariant addGenre(QSqlQuery &q, const QString &name)
68*4882a593Smuzhiyun {
69*4882a593Smuzhiyun     q.addBindValue(name);
70*4882a593Smuzhiyun     q.exec();
71*4882a593Smuzhiyun     return q.lastInsertId();
72*4882a593Smuzhiyun }
73*4882a593Smuzhiyun 
addAuthor(QSqlQuery & q,const QString & name,const QDate & birthdate)74*4882a593Smuzhiyun QVariant addAuthor(QSqlQuery &q, const QString &name, const QDate &birthdate)
75*4882a593Smuzhiyun {
76*4882a593Smuzhiyun     q.addBindValue(name);
77*4882a593Smuzhiyun     q.addBindValue(birthdate);
78*4882a593Smuzhiyun     q.exec();
79*4882a593Smuzhiyun     return q.lastInsertId();
80*4882a593Smuzhiyun }
81*4882a593Smuzhiyun 
initDb()82*4882a593Smuzhiyun QSqlError initDb()
83*4882a593Smuzhiyun {
84*4882a593Smuzhiyun     QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
85*4882a593Smuzhiyun     db.setDatabaseName(":memory:");
86*4882a593Smuzhiyun 
87*4882a593Smuzhiyun     if (!db.open())
88*4882a593Smuzhiyun         return db.lastError();
89*4882a593Smuzhiyun 
90*4882a593Smuzhiyun     QStringList tables = db.tables();
91*4882a593Smuzhiyun     if (tables.contains("books", Qt::CaseInsensitive)
92*4882a593Smuzhiyun         && tables.contains("authors", Qt::CaseInsensitive))
93*4882a593Smuzhiyun         return QSqlError();
94*4882a593Smuzhiyun 
95*4882a593Smuzhiyun     QSqlQuery q;
96*4882a593Smuzhiyun     if (!q.exec(QLatin1String("create table books(id integer primary key, title varchar, author integer, genre integer, year integer, rating integer)")))
97*4882a593Smuzhiyun         return q.lastError();
98*4882a593Smuzhiyun     if (!q.exec(QLatin1String("create table authors(id integer primary key, name varchar, birthdate date)")))
99*4882a593Smuzhiyun         return q.lastError();
100*4882a593Smuzhiyun     if (!q.exec(QLatin1String("create table genres(id integer primary key, name varchar)")))
101*4882a593Smuzhiyun         return q.lastError();
102*4882a593Smuzhiyun 
103*4882a593Smuzhiyun     if (!q.prepare(QLatin1String("insert into authors(name, birthdate) values(?, ?)")))
104*4882a593Smuzhiyun         return q.lastError();
105*4882a593Smuzhiyun     QVariant asimovId = addAuthor(q, QLatin1String("Isaac Asimov"), QDate(1920, 2, 1));
106*4882a593Smuzhiyun     QVariant greeneId = addAuthor(q, QLatin1String("Graham Greene"), QDate(1904, 10, 2));
107*4882a593Smuzhiyun     QVariant pratchettId = addAuthor(q, QLatin1String("Terry Pratchett"), QDate(1948, 4, 28));
108*4882a593Smuzhiyun 
109*4882a593Smuzhiyun     if (!q.prepare(QLatin1String("insert into genres(name) values(?)")))
110*4882a593Smuzhiyun         return q.lastError();
111*4882a593Smuzhiyun     QVariant sfiction = addGenre(q, QLatin1String("Science Fiction"));
112*4882a593Smuzhiyun     QVariant fiction = addGenre(q, QLatin1String("Fiction"));
113*4882a593Smuzhiyun     QVariant fantasy = addGenre(q, QLatin1String("Fantasy"));
114*4882a593Smuzhiyun 
115*4882a593Smuzhiyun     if (!q.prepare(QLatin1String("insert into books(title, year, author, genre, rating) values(?, ?, ?, ?, ?)")))
116*4882a593Smuzhiyun         return q.lastError();
117*4882a593Smuzhiyun     addBook(q, QLatin1String("Foundation"), 1951, asimovId, sfiction, 3);
118*4882a593Smuzhiyun     addBook(q, QLatin1String("Foundation and Empire"), 1952, asimovId, sfiction, 4);
119*4882a593Smuzhiyun     addBook(q, QLatin1String("Second Foundation"), 1953, asimovId, sfiction, 3);
120*4882a593Smuzhiyun     addBook(q, QLatin1String("Foundation's Edge"), 1982, asimovId, sfiction, 3);
121*4882a593Smuzhiyun     addBook(q, QLatin1String("Foundation and Earth"), 1986, asimovId, sfiction, 4);
122*4882a593Smuzhiyun     addBook(q, QLatin1String("Prelude to Foundation"), 1988, asimovId, sfiction, 3);
123*4882a593Smuzhiyun     addBook(q, QLatin1String("Forward the Foundation"), 1993, asimovId, sfiction, 3);
124*4882a593Smuzhiyun     addBook(q, QLatin1String("The Power and the Glory"), 1940, greeneId, fiction, 4);
125*4882a593Smuzhiyun     addBook(q, QLatin1String("The Third Man"), 1950, greeneId, fiction, 5);
126*4882a593Smuzhiyun     addBook(q, QLatin1String("Our Man in Havana"), 1958, greeneId, fiction, 4);
127*4882a593Smuzhiyun     addBook(q, QLatin1String("Guards! Guards!"), 1989, pratchettId, fantasy, 3);
128*4882a593Smuzhiyun     addBook(q, QLatin1String("Night Watch"), 2002, pratchettId, fantasy, 3);
129*4882a593Smuzhiyun     addBook(q, QLatin1String("Going Postal"), 2004, pratchettId, fantasy, 3);
130*4882a593Smuzhiyun 
131*4882a593Smuzhiyun     return QSqlError();
132*4882a593Smuzhiyun }
133*4882a593Smuzhiyun 
134*4882a593Smuzhiyun #endif
135