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

系统编程

开发平台:

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 QSQL_MYSQL_H
  38. #define QSQL_MYSQL_H
  39. #include <QtSql/qsqldriver.h>
  40. #include <QtSql/qsqlresult.h>
  41. #if defined (Q_OS_WIN32)
  42. #include <QtCore/qt_windows.h>
  43. #endif
  44. #include <mysql.h>
  45. #ifdef QT_PLUGIN
  46. #define Q_EXPORT_SQLDRIVER_MYSQL
  47. #else
  48. #define Q_EXPORT_SQLDRIVER_MYSQL Q_SQL_EXPORT
  49. #endif
  50. QT_BEGIN_HEADER
  51. QT_BEGIN_NAMESPACE
  52. class QMYSQLDriverPrivate;
  53. class QMYSQLResultPrivate;
  54. class QMYSQLDriver;
  55. class QSqlRecordInfo;
  56. class QMYSQLResult : public QSqlResult
  57. {
  58.     friend class QMYSQLDriver;
  59. public:
  60.     explicit QMYSQLResult(const QMYSQLDriver* db);
  61.     ~QMYSQLResult();
  62.     QVariant handle() const;
  63. protected:
  64.     void cleanup();
  65.     bool fetch(int i);
  66.     bool fetchNext();
  67.     bool fetchLast();
  68.     bool fetchFirst();
  69.     QVariant data(int field);
  70.     bool isNull(int field);
  71.     bool reset (const QString& query);
  72.     int size();
  73.     int numRowsAffected();
  74.     QVariant lastInsertId() const;
  75.     QSqlRecord record() const;
  76.     void virtual_hook(int id, void *data);
  77.     bool nextResult();
  78. #if MYSQL_VERSION_ID >= 40108
  79.     bool prepare(const QString& stmt);
  80.     bool exec();
  81. #endif
  82. private:
  83.     QMYSQLResultPrivate* d;
  84. };
  85. class Q_EXPORT_SQLDRIVER_MYSQL QMYSQLDriver : public QSqlDriver
  86. {
  87.     Q_OBJECT
  88.     friend class QMYSQLResult;
  89. public:
  90.     explicit QMYSQLDriver(QObject *parent=0);
  91.     explicit QMYSQLDriver(MYSQL *con, QObject * parent=0);
  92.     ~QMYSQLDriver();
  93.     bool hasFeature(DriverFeature f) const;
  94.     bool open(const QString & db,
  95.                const QString & user,
  96.                const QString & password,
  97.                const QString & host,
  98.                int port,
  99.                const QString& connOpts);
  100.     void close();
  101.     QSqlResult *createResult() const;
  102.     QStringList tables(QSql::TableType) const;
  103.     QSqlIndex primaryIndex(const QString& tablename) const;
  104.     QSqlRecord record(const QString& tablename) const;
  105.     QString formatValue(const QSqlField &field,
  106.                                      bool trimStrings) const;
  107.     QVariant handle() const;
  108.     QString escapeIdentifier(const QString &identifier, IdentifierType type) const;
  109. protected:
  110.     bool beginTransaction();
  111.     bool commitTransaction();
  112.     bool rollbackTransaction();
  113. private:
  114.     void init();
  115.     QMYSQLDriverPrivate* d;
  116. };
  117. QT_END_NAMESPACE
  118. QT_END_HEADER
  119. #endif // QSQL_MYSQL_H