qsqlresult.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtSql module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QSQLRESULT_H
  38. #define QSQLRESULT_H
  39. #include <QtCore/qvariant.h>
  40. #include <QtCore/qvector.h>
  41. #include <QtSql/qsql.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Sql)
  45. class QString;
  46. class QSqlRecord;
  47. template <typename T> class QVector;
  48. class QVariant;
  49. class QSqlDriver;
  50. class QSqlError;
  51. class QSqlResultPrivate;
  52. class Q_SQL_EXPORT QSqlResult
  53. {
  54.     friend class QSqlQuery;
  55.     friend class QSqlTableModelPrivate;
  56.     friend class QSqlResultPrivate;
  57. public:
  58.     virtual ~QSqlResult();
  59.     virtual QVariant handle() const;
  60. protected:
  61.     enum BindingSyntax {
  62.         PositionalBinding,
  63.         NamedBinding
  64. #ifdef QT3_SUPPORT
  65.         , BindByPosition = PositionalBinding,
  66.         BindByName = NamedBinding
  67. #endif
  68.     };
  69.     explicit QSqlResult(const QSqlDriver * db);
  70.     int at() const;
  71.     QString lastQuery() const;
  72.     QSqlError lastError() const;
  73.     bool isValid() const;
  74.     bool isActive() const;
  75.     bool isSelect() const;
  76.     bool isForwardOnly() const;
  77.     const QSqlDriver* driver() const;
  78.     virtual void setAt(int at);
  79.     virtual void setActive(bool a);
  80.     virtual void setLastError(const QSqlError& e);
  81.     virtual void setQuery(const QString& query);
  82.     virtual void setSelect(bool s);
  83.     virtual void setForwardOnly(bool forward);
  84.     // prepared query support
  85.     virtual bool exec();
  86.     virtual bool prepare(const QString& query);
  87.     virtual bool savePrepare(const QString& sqlquery);
  88.     virtual void bindValue(int pos, const QVariant& val, QSql::ParamType type);
  89.     virtual void bindValue(const QString& placeholder, const QVariant& val,
  90.                            QSql::ParamType type);
  91.     void addBindValue(const QVariant& val, QSql::ParamType type);
  92.     QVariant boundValue(const QString& placeholder) const;
  93.     QVariant boundValue(int pos) const;
  94.     QSql::ParamType bindValueType(const QString& placeholder) const;
  95.     QSql::ParamType bindValueType(int pos) const;
  96.     int boundValueCount() const;
  97.     QVector<QVariant>& boundValues() const;
  98.     QString executedQuery() const;
  99.     QString boundValueName(int pos) const;
  100.     void clear();
  101.     bool hasOutValues() const;
  102.     BindingSyntax bindingSyntax() const;
  103.     virtual QVariant data(int i) = 0;
  104.     virtual bool isNull(int i) = 0;
  105.     virtual bool reset(const QString& sqlquery) = 0;
  106.     virtual bool fetch(int i) = 0;
  107.     virtual bool fetchNext();
  108.     virtual bool fetchPrevious();
  109.     virtual bool fetchFirst() = 0;
  110.     virtual bool fetchLast() = 0;
  111.     virtual int size() = 0;
  112.     virtual int numRowsAffected() = 0;
  113.     virtual QSqlRecord record() const;
  114.     virtual QVariant lastInsertId() const;
  115.     enum VirtualHookOperation { BatchOperation, DetachFromResultSet, SetNumericalPrecision, NextResult };
  116.     virtual void virtual_hook(int id, void *data);
  117.     bool execBatch(bool arrayBind = false);
  118.     void detachFromResultSet();
  119.     void setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy policy);
  120.     bool nextResult();
  121. private:
  122.     QSqlResultPrivate* d;
  123.     void resetBindCount(); // HACK
  124. private:
  125.     Q_DISABLE_COPY(QSqlResult)
  126. };
  127. QT_END_NAMESPACE
  128. QT_END_HEADER
  129. #endif // QSQLRESULT_H