Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_sql_kernel_qsqlerror.cpp
Go to the documentation of this file.
1
// Copyright (C) 2016 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
#
include
<
QSqlDatabase
>
4
#
include
<
QSqlQuery
>
5
#
include
<
QSqlQueryModel
>
6
#
include
<
QSqlError
>
7
#
include
<
QDebug
>
8
9
void
checkSqlQueryModel
()
10
{
11
//! [0]
12
QSqlQueryModel model;
13
model.setQuery(
"select * from myTable"
);
14
if
(model.lastError().isValid())
15
qDebug() << model.lastError();
16
//! [0]
17
}
checkSqlQueryModel
void checkSqlQueryModel()
Definition
src_sql_kernel_qsqlerror.cpp:9
qtbase
src
sql
doc
snippets
code
src_sql_kernel_qsqlerror.cpp
Generated on
for Qt by
1.14.0