qsql_odbc.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_ODBC_H
  38. #define QSQL_ODBC_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. #if defined (Q_OS_MAC) && (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_3)
  45. // assume we use iodbc on MACX
  46. // comment next line out if you use a
  47. // unicode compatible manager
  48. # define Q_ODBC_VERSION_2
  49. #endif
  50. #ifdef QT_PLUGIN
  51. #define Q_EXPORT_SQLDRIVER_ODBC
  52. #else
  53. #define Q_EXPORT_SQLDRIVER_ODBC Q_SQL_EXPORT
  54. #endif
  55. #ifdef Q_OS_UNIX
  56. #define HAVE_LONG_LONG 1 // force UnixODBC NOT to fall back to a struct for BIGINTs
  57. #endif
  58. #if defined(Q_CC_BOR)
  59. // workaround for Borland to make sure that SQLBIGINT is defined
  60. #  define _MSC_VER 900
  61. #endif
  62. #include <sql.h>
  63. #if defined(Q_CC_BOR)
  64. #  undef _MSC_VER
  65. #endif
  66. #ifndef Q_ODBC_VERSION_2
  67. #include <sqlucode.h>
  68. #endif
  69. #include <sqlext.h>
  70. QT_BEGIN_HEADER
  71. QT_BEGIN_NAMESPACE
  72. class QODBCPrivate;
  73. class QODBCDriverPrivate;
  74. class QODBCDriver;
  75. class QSqlRecordInfo;
  76. class QODBCResult : public QSqlResult
  77. {
  78. public:
  79.     QODBCResult(const QODBCDriver * db, QODBCDriverPrivate* p);
  80.     virtual ~QODBCResult();
  81.     bool prepare(const QString& query);
  82.     bool exec();
  83.     QVariant handle() const;
  84. protected:
  85.     bool fetchNext();
  86.     bool fetchFirst();
  87.     bool fetchLast();
  88.     bool fetchPrevious();
  89.     bool fetch(int i);
  90.     bool reset (const QString& query);
  91.     QVariant data(int field);
  92.     bool isNull(int field);
  93.     int size();
  94.     int numRowsAffected();
  95.     QSqlRecord record() const;
  96.     void virtual_hook(int id, void *data);
  97.     bool nextResult();
  98. private:
  99.     QODBCPrivate *d;
  100. };
  101. class Q_EXPORT_SQLDRIVER_ODBC QODBCDriver : public QSqlDriver
  102. {
  103.     Q_OBJECT
  104. public:
  105.     explicit QODBCDriver(QObject *parent=0);
  106.     QODBCDriver(SQLHANDLE env, SQLHANDLE con, QObject * parent=0);
  107.     virtual ~QODBCDriver();
  108.     bool hasFeature(DriverFeature f) const;
  109.     void close();
  110.     QSqlResult *createResult() const;
  111.     QStringList tables(QSql::TableType) const;
  112.     QSqlRecord record(const QString& tablename) const;
  113.     QSqlIndex primaryIndex(const QString& tablename) const;
  114.     QVariant handle() const;
  115.     QString formatValue(const QSqlField &field,
  116.                         bool trimStrings) const;
  117.     bool open(const QString& db,
  118.               const QString& user,
  119.               const QString& password,
  120.               const QString& host,
  121.               int port,
  122.               const QString& connOpts);
  123.     QString escapeIdentifier(const QString &identifier, IdentifierType type) const;
  124. protected:
  125.     bool beginTransaction();
  126.     bool commitTransaction();
  127.     bool rollbackTransaction();
  128. private:
  129.     void init();
  130.     bool endTrans();
  131.     void cleanup();
  132.     QODBCDriverPrivate* d;
  133.     friend class QODBCPrivate;
  134. };
  135. QT_END_NAMESPACE
  136. QT_END_HEADER
  137. #endif // QSQL_ODBC_H