aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp
blob: 2c5fd83eb52ed457bcd22107feb23084b0371808 (plain)
1
2
3
4
5
6
//! [0]
model = QSqlQueryModel()
model.setQuery("select * from myTable")
if model.lastError().isValid():
    print model.lastError()
//! [0]