qsql_psql.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_PSQL_H
  38. #define QSQL_PSQL_H
  39. #include <QtSql/qsqlresult.h>
  40. #include <QtSql/qsqldriver.h>
  41. #ifdef QT_PLUGIN
  42. #define Q_EXPORT_SQLDRIVER_PSQL
  43. #else
  44. #define Q_EXPORT_SQLDRIVER_PSQL Q_SQL_EXPORT
  45. #endif
  46. QT_BEGIN_HEADER
  47. typedef struct pg_conn PGconn;
  48. typedef struct pg_result PGresult;
  49. QT_BEGIN_NAMESPACE
  50. class QPSQLResultPrivate;
  51. class QPSQLDriverPrivate;
  52. class QPSQLDriver;
  53. class QSqlRecordInfo;
  54. class QPSQLResult : public QSqlResult
  55. {
  56.     friend class QPSQLResultPrivate;
  57. public:
  58.     QPSQLResult(const QPSQLDriver* db, const QPSQLDriverPrivate* p);
  59.     ~QPSQLResult();
  60.     QVariant handle() const;
  61.     void virtual_hook(int id, void *data);
  62. protected:
  63.     void cleanup();
  64.     bool fetch(int i);
  65.     bool fetchFirst();
  66.     bool fetchLast();
  67.     QVariant data(int i);
  68.     bool isNull(int field);
  69.     bool reset (const QString& query);
  70.     int size();
  71.     int numRowsAffected();
  72.     QSqlRecord record() const;
  73.     QVariant lastInsertId() const;
  74.     bool prepare(const QString& query);
  75.     bool exec();
  76. private:
  77.     QPSQLResultPrivate *d;
  78. };
  79. class Q_EXPORT_SQLDRIVER_PSQL QPSQLDriver : public QSqlDriver
  80. {
  81.     Q_OBJECT
  82. public:
  83.     enum Protocol {
  84.         Version6 = 6,
  85.         Version7 = 7,
  86.         Version71 = 8,
  87.         Version73 = 9,
  88.         Version74 = 10,
  89.         Version8 = 11,
  90.         Version81 = 12,
  91.         Version82 = 13
  92.     };
  93.     explicit QPSQLDriver(QObject *parent=0);
  94.     explicit QPSQLDriver(PGconn *conn, QObject *parent=0);
  95.     ~QPSQLDriver();
  96.     bool hasFeature(DriverFeature f) const;
  97.     bool open(const QString & db,
  98.               const QString & user,
  99.               const QString & password,
  100.               const QString & host,
  101.               int port,
  102.               const QString& connOpts);
  103.     bool isOpen() const;
  104.     void close();
  105.     QSqlResult *createResult() const;
  106.     QStringList tables(QSql::TableType) const;
  107.     QSqlIndex primaryIndex(const QString& tablename) const;
  108.     QSqlRecord record(const QString& tablename) const;
  109.     Protocol protocol() const;
  110.     QVariant handle() const;
  111.     QString escapeIdentifier(const QString &identifier, IdentifierType type) const;
  112.     QString formatValue(const QSqlField &field, bool trimStrings) const;
  113. protected:
  114.     bool beginTransaction();
  115.     bool commitTransaction();
  116.     bool rollbackTransaction();
  117. protected Q_SLOTS:
  118.     bool subscribeToNotificationImplementation(const QString &name);
  119.     bool unsubscribeFromNotificationImplementation(const QString &name);
  120.     QStringList subscribedToNotificationsImplementation() const;
  121. private Q_SLOTS:
  122.     void _q_handleNotification(int);
  123. private:
  124.     void init();
  125.     QPSQLDriverPrivate *d;
  126. };
  127. QT_END_NAMESPACE
  128. QT_END_HEADER
  129. #endif // QSQL_PSQL_H