qsqldatabase.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 QSQLDATABASE_H
  40. #define QSQLDATABASE_H
  41. #include <QtCore/qstring.h>
  42. #include <QtSql/qsql.h>
  43. QT_BEGIN_NAMESPACE
  44. class QSqlError;
  45. class QSqlDriver;
  46. class QSqlIndex;
  47. class QSqlRecord;
  48. class QSqlQuery;
  49. class QSqlDatabasePrivate;
  50. class Q_SQL_EXPORT QSqlDriverCreatorBase
  51. {
  52. public:
  53. virtual ~QSqlDriverCreatorBase() {}
  54. virtual QSqlDriver *createObject() const = 0;
  55. };
  56. template <class T>
  57. class QSqlDriverCreator : public QSqlDriverCreatorBase
  58. {
  59. public:
  60. QSqlDriver *createObject() const Q_DECL_OVERRIDE { return new T; }
  61. };
  62. class Q_SQL_EXPORT QSqlDatabase
  63. {
  64. public:
  65. QSqlDatabase();
  66. QSqlDatabase(const QSqlDatabase &other);
  67. ~QSqlDatabase();
  68. QSqlDatabase &operator=(const QSqlDatabase &other);
  69. bool open();
  70. bool open(const QString& user, const QString& password);
  71. void close();
  72. bool isOpen() const;
  73. bool isOpenError() const;
  74. QStringList tables(QSql::TableType type = QSql::Tables) const;
  75. QSqlIndex primaryIndex(const QString& tablename) const;
  76. QSqlRecord record(const QString& tablename) const;
  77. QSqlQuery exec(const QString& query = QString()) const;
  78. QSqlError lastError() const;
  79. bool isValid() const;
  80. bool transaction();
  81. bool commit();
  82. bool rollback();
  83. void setDatabaseName(const QString& name);
  84. void setUserName(const QString& name);
  85. void setPassword(const QString& password);
  86. void setHostName(const QString& host);
  87. void setPort(int p);
  88. void setConnectOptions(const QString& options = QString());
  89. QString databaseName() const;
  90. QString userName() const;
  91. QString password() const;
  92. QString hostName() const;
  93. QString driverName() const;
  94. int port() const;
  95. QString connectOptions() const;
  96. QString connectionName() const;
  97. void setNumericalPrecisionPolicy(QSql::NumericalPrecisionPolicy precisionPolicy);
  98. QSql::NumericalPrecisionPolicy numericalPrecisionPolicy() const;
  99. QSqlDriver* driver() const;
  100. static
  101. #if !defined(Q_CC_MSVC) || _MSC_VER >= 1900
  102. // ### Qt6: remove the #ifdef
  103. const
  104. #endif
  105. char *defaultConnection;
  106. static QSqlDatabase addDatabase(const QString& type,
  107. const QString& connectionName = QLatin1String(defaultConnection));
  108. static QSqlDatabase addDatabase(QSqlDriver* driver,
  109. const QString& connectionName = QLatin1String(defaultConnection));
  110. static QSqlDatabase cloneDatabase(const QSqlDatabase &other, const QString& connectionName);
  111. static QSqlDatabase database(const QString& connectionName = QLatin1String(defaultConnection),
  112. bool open = true);
  113. static void removeDatabase(const QString& connectionName);
  114. static bool contains(const QString& connectionName = QLatin1String(defaultConnection));
  115. static QStringList drivers();
  116. static QStringList connectionNames();
  117. static void registerSqlDriver(const QString &name, QSqlDriverCreatorBase *creator);
  118. static bool isDriverAvailable(const QString &name);
  119. protected:
  120. explicit QSqlDatabase(const QString& type);
  121. explicit QSqlDatabase(QSqlDriver* driver);
  122. private:
  123. friend class QSqlDatabasePrivate;
  124. QSqlDatabasePrivate *d;
  125. };
  126. #ifndef QT_NO_DEBUG_STREAM
  127. Q_SQL_EXPORT QDebug operator<<(QDebug, const QSqlDatabase &);
  128. #endif
  129. QT_END_NAMESPACE
  130. #endif // QSQLDATABASE_H