diff options
Diffstat (limited to 'src/sql/kernel/qsqlquery.cpp')
-rw-r--r-- | src/sql/kernel/qsqlquery.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sql/kernel/qsqlquery.cpp b/src/sql/kernel/qsqlquery.cpp index 1ada7f9e27a..b1ec8bde935 100644 --- a/src/sql/kernel/qsqlquery.cpp +++ b/src/sql/kernel/qsqlquery.cpp @@ -335,6 +335,9 @@ bool QSqlQuery::isNull(int field) const returns isNull(int index) for the corresponding field index. This overload is less efficient than \l{QSqlQuery::}{isNull()} + + \note In Qt versions prior to 6.8, this function took QString, not + QAnyStringView. */ bool QSqlQuery::isNull(QAnyStringView name) const { @@ -446,6 +449,9 @@ QVariant QSqlQuery::value(int index) const If field \a name does not exist an invalid variant is returned. This overload is less efficient than \l{QSqlQuery::}{value()} + + \note In Qt versions prior to 6.8, this function took QString, not + QAnyStringView. */ QVariant QSqlQuery::value(QAnyStringView name) const { |