qsqlquery.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 QtSql module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  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. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QSQLQUERY_H
  40. #define QSQLQUERY_H
  41. #include <QtSql/qsql.h>
  42. #include <QtSql/qsqldatabase.h>
  43. #include <QtCore/qstring.h>
  44. QT_BEGIN_NAMESPACE
  45. class QVariant;
  46. class QSqlDriver;
  47. class QSqlError;
  48. class QSqlResult;
  49. class QSqlRecord;
  50. template <class Key, class T> class QMap;
  51. class QSqlQueryPrivate;
  52. class Q_SQL_EXPORT QSqlQuery
  53. {
  54. public:
  55. explicit QSqlQuery(QSqlResult *r);
  56. explicit QSqlQuery(const QString& query = QString(), QSqlDatabase db = QSqlDatabase());
  57. explicit QSqlQuery(QSqlDatabase db);
  58. QSqlQuery(const QSqlQuery& other);
  59. QSqlQuery& operator=(const QSqlQuery& other);
  60. ~QSqlQuery();
  61. bool isValid() const;
  62. bool isActive() const;
  63. bool isNull(int field) const;
  64. bool isNull(const QString &name) const;
  65. int at() const;
  66. QString lastQuery() const;
  67. int numRowsAffected() const;
  68. QSqlError lastError() const;
  69. bool isSelect() const;
  70. int size() const;
  71. const QSqlDriver* driver() const;
  72. const QSqlResult* result() const;
  73. bool isForwardOnly() const;
  74. QSqlRecord record() const;
  75. void setForwardOnly(bool forward);
  76. bool exec(const QString& query);
  77. QVariant value(int i) const;
  78. QVariant value(const QString& name) const;
  79. void setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy precisionPolicy);
  80. QSql::NumericalPrecisionPolicy numericalPrecisionPolicy() const;
  81. bool seek(int i, bool relative = false);
  82. bool next();
  83. bool previous();
  84. bool first();
  85. bool last();
  86. void clear();
  87. // prepared query support
  88. bool exec();
  89. enum BatchExecutionMode { ValuesAsRows, ValuesAsColumns };
  90. bool execBatch(BatchExecutionMode mode = ValuesAsRows);
  91. bool prepare(const QString& query);
  92. void bindValue(const QString& placeholder, const QVariant& val,
  93. QSql::ParamType type = QSql::In);
  94. void bindValue(int pos, const QVariant& val, QSql::ParamType type = QSql::In);
  95. void addBindValue(const QVariant& val, QSql::ParamType type = QSql::In);
  96. QVariant boundValue(const QString& placeholder) const;
  97. QVariant boundValue(int pos) const;
  98. QMap<QString, QVariant> boundValues() const;
  99. QString executedQuery() const;
  100. QVariant lastInsertId() const;
  101. void finish();
  102. bool nextResult();
  103. private:
  104. QSqlQueryPrivate* d;
  105. };
  106. QT_END_NAMESPACE
  107. #endif // QSQLQUERY_H