1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the documentation of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:BSD$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** BSD License Usage |
18 | ** Alternatively, you may use this file under the terms of the BSD license |
19 | ** as follows: |
20 | ** |
21 | ** "Redistribution and use in source and binary forms, with or without |
22 | ** modification, are permitted provided that the following conditions are |
23 | ** met: |
24 | ** * Redistributions of source code must retain the above copyright |
25 | ** notice, this list of conditions and the following disclaimer. |
26 | ** * Redistributions in binary form must reproduce the above copyright |
27 | ** notice, this list of conditions and the following disclaimer in |
28 | ** the documentation and/or other materials provided with the |
29 | ** distribution. |
30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
31 | ** contributors may be used to endorse or promote products derived |
32 | ** from this software without specific prior written permission. |
33 | ** |
34 | ** |
35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
46 | ** |
47 | ** $QT_END_LICENSE$ |
48 | ** |
49 | ****************************************************************************/ |
50 | #include <QSqlDatabase> |
51 | #include <QSqlQuery> |
52 | #include <QSqlDriver> |
53 | #include <QSqlResult> |
54 | #include <QVariant> |
55 | #include <QDebug> |
56 | |
57 | void testProc() |
58 | { |
59 | //! [2] |
60 | QSqlQuery q; |
61 | q.exec(query: "call qtestproc (@outval1, @outval2)" ); |
62 | q.exec(query: "select @outval1, @outval2" ); |
63 | if (q.next()) |
64 | qDebug() << q.value(i: 0) << q.value(i: 1); // outputs "42" and "43" |
65 | //! [2] |
66 | } |
67 | |
68 | void callStoredProc() |
69 | { |
70 | //! [10] |
71 | // STORED_PROC uses the return statement or returns multiple result sets |
72 | QSqlQuery query; |
73 | query.setForwardOnly(true); |
74 | query.exec(query: "{call STORED_PROC}" ); |
75 | //! [10] |
76 | } |
77 | |
78 | void setHost() |
79 | { |
80 | //! [24] |
81 | QSqlDatabase db; |
82 | db.setHostName("MyServer" ); |
83 | db.setDatabaseName("C:\\test.gdb" ); |
84 | //! [24] |
85 | |
86 | |
87 | //! [25] |
88 | // connect to database using the Latin-1 character set |
89 | db.setConnectOptions("ISC_DPB_LC_CTYPE=Latin1" ); |
90 | if (db.open()) |
91 | qDebug(msg: "The database connection is open." ); |
92 | //! [25] |
93 | } |
94 | |
95 | void exProc() |
96 | { |
97 | //! [26] |
98 | QSqlQuery q; |
99 | q.exec(query: "execute procedure my_procedure" ); |
100 | if (q.next()) |
101 | qDebug() << q.value(i: 0); // outputs the first RETURN/OUT value |
102 | //! [26] |
103 | |
104 | qDebug( \ |
105 | //! [31] |
106 | msg: "QSqlDatabase: QMYSQL driver not loaded \ |
107 | QSqlDatabase: available drivers: QMYSQL" \ |
108 | //! [31] |
109 | ); |
110 | |
111 | /* Commented because the following line is not compilable |
112 | //! [34] |
113 | column.contains(QRegularExpression("pattern")); |
114 | //! [34] |
115 | */ |
116 | } |
117 | |
118 | |
119 | |
120 | void updTable2() |
121 | { |
122 | QSqlDatabase db; |
123 | //! [37] |
124 | int value; |
125 | QSqlQuery query1; |
126 | query1.setForwardOnly(true); |
127 | query1.exec(query: "select * FROM table1" ); |
128 | while (query1.next()) { |
129 | value = query1.value(i: 0).toInt(); |
130 | if (value == 1) { |
131 | QSqlQuery query2; |
132 | query2.exec(query: "update table2 set col=2" ); // WRONG: This will discard all results of |
133 | } // query1, and cause the loop to quit |
134 | } |
135 | //! [37] |
136 | } |
137 | |
138 | |
139 | void setConnString() |
140 | { |
141 | //! [39] |
142 | QSqlDatabase db = QSqlDatabase::addDatabase(type: "QODBC3" ); |
143 | QString connectString = QStringLiteral( |
144 | "DRIVER=/path/to/installation/libodbcHDB.so;" |
145 | "SERVERNODE=hostname:port;" |
146 | "UID=USER;" |
147 | "PWD=PASSWORD;" |
148 | "SCROLLABLERESULT=true" ); |
149 | db.setDatabaseName(connectString); |
150 | //! [39] |
151 | } |
152 | |