1. 26 Nov, 2014 - 1 commit
  2. 24 Sep, 2014 - 2 commits
  3. 15 Jan, 2014 - 1 commit
  4. 01 Dec, 2013 - 1 commit
  5. 30 Nov, 2013 - 1 commit
  6. 27 Nov, 2013 - 1 commit
  7. 04 Nov, 2013 - 1 commit
  8. 04 Apr, 2013 - 1 commit
    • Mark Brand's avatar
      QSqlDriver: use Q_DECLARE_PUBLIC/Q_DECLARE_PRIVATE · 0bdc86d9
      Mark Brand authored
      406c8ef6
      
       introduced deriving the private SQL driver classes from
      QSqlDriverPrivate. However, the drivers continued to keep their own
      pointer to the private class, even though QObject provides the same
      pointer. Worse yet, the private class is allocated too late and not
      even passed to QSqlDriver. The result is that QSqlDriver allocates
      a separate instance of QSqlDriverPrivate. This is likely to cause
      all kinds of chaos.
      
      The private class needs to be allocated in time pass it to QSqlDriver
      which passes it on to QObject.
      
      This commit covers the the base class and drivers:
          ibase
          mysql
          odbc
          psql
          sqlite
          tds
      
      Fixes for the remaining drivers will follow.
      
      Change-Id: Id8e7ec4205b0ca6cd00bd022c9cd24f137089245
      Reviewed-by: default avatarAndy Shaw <andy.shaw@digia.com>
      0bdc86d9
  9. 02 Apr, 2013 - 1 commit
  10. 16 Mar, 2013 - 1 commit
    • Axel Waggershauser's avatar
      Whitespace cleanup: remove trailing whitespace · b11317a6
      Axel Waggershauser authored
      
      Remove all trailing whitespace from the following list of files:
      *.cpp *.h *.conf *.qdoc *.pro *.pri *.mm *.rc *.pl *.qps *.xpm *.txt *README
      excluding 3rdparty, test-data and auto generated code.
      
      Note A): the only non 3rdparty c++-files that still
      have trailing whitespace after this change are:
      * src/corelib/codecs/cp949codetbl_p.h
      * src/corelib/codecs/qjpunicode.cpp
      * src/corelib/codecs/qbig5codec.cpp
      * src/corelib/xml/qxmlstream_p.h
      * src/tools/qdoc/qmlparser/qqmljsgrammar.cpp
      * src/tools/uic/ui4.cpp
      * tests/auto/other/qtokenautomaton/tokenizers/*
      * tests/benchmarks/corelib/tools/qstring/data.cpp
      * util/lexgen/tokenizer.cpp
      
      Note B): in about 30 files some overlapping 'leading tab' and
      'TAB character in non-leading whitespace' issues have been fixed
      to make the sanity bot happy. Plus some general ws-fixes here
      and there as asked for during review.
      
      Change-Id: Ia713113c34d82442d6ce4d93d8b1cf545075d11d
      Reviewed-by: default avatarOswald Buddenhagen <oswald.buddenhagen@digia.com>
      b11317a6
  11. 13 Mar, 2013 - 1 commit
  12. 26 Feb, 2013 - 1 commit
  13. 01 Feb, 2013 - 1 commit
  14. 18 Jan, 2013 - 1 commit
  15. 28 Dec, 2012 - 1 commit
    • Thiago Macieira's avatar
      Fix warnings in the SQL drivers found by GCC 4.7 · 19d8a770
      Thiago Macieira authored
      
      qsql_psql.cpp:774:12: error: enumeration value 'CancelQuery' not handled in switch [-Werror=switch]
      qsql_mysql.cpp:1163:12: error: enumeration value 'CancelQuery' not handled in switch [-Werror=switch]
      qsql_sqlite.cpp:527:12: error: enumeration value 'CancelQuery' not handled in switch [-Werror=switch]
      qsql_odbc.cpp:88:97: error: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Werror=format]
      qsql_odbc.cpp:706:76: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
      
      Change-Id: I79965283057e92a44a0c8375530cfb30107c891c
      Reviewed-by: default avatarMark Brand <mabrand@mabrand.nl>
      19d8a770
  16. 18 Nov, 2012 - 1 commit
  17. 22 Sep, 2012 - 1 commit
  18. 06 Jun, 2012 - 1 commit
    • Mark Brand's avatar
      QSqlResult: replace virtual hooks with virtual functions · fc15a1d5
      Mark Brand authored
      
      Instead of virtual functions which would have broken binary
      compatibility, virtual_hook() was used to implement the virtual
      functionality. Now, since the step to Qt 5.0 allows breaking
      binary compatibility, we take the opporunity to simplify the code
      using real virtual functions.
      
      SetNumericalPrecision --> setNumericalPrecisionPolicy()
      NextResult --> nextResult()
      DetachFromResultSet --> detachFromResultSet()
      BatchOperation --> execBatch()
      
      Task-number: QTBUG-25252
      Change-Id: Idd3a870f876d8b8a7457559d5f31ec2073786a75
      Reviewed-by: default avatarBill King <bill.king@nokia.com>
      Reviewed-by: default avatarHarald Fernengel <harald.fernengel@nokia.com>
      fc15a1d5
  19. 02 Apr, 2012 - 1 commit
    • Honglei Zhang's avatar
      Convert Boolean value into integer · 50ad785b
      Honglei Zhang authored
      
      According to documentation, SQLite doesn't have a separate Boolean
      storage class. Instead, values are stored as integers 0(false) and
      1(true). In QSqlQuery::bindValue(), if a boolean value is bound
      to a placeholder, it is converted to text true and false. This fix
      converts boolean value to integer 0 and 1.
      
      Task-number: QTBUG-23895
      Change-Id: I4945971172f0b5e5819446700390033a1a4ce301
      Reviewed-by: default avatarMichael Goddard <michael.goddard@nokia.com>
      Reviewed-by: default avatarMark Brand <mabrand@mabrand.nl>
      50ad785b
  20. 13 Mar, 2012 - 1 commit
  21. 07 Mar, 2012 - 1 commit
  22. 08 Feb, 2012 - 1 commit
  23. 03 Feb, 2012 - 1 commit
  24. 30 Jan, 2012 - 1 commit
  25. 24 Jan, 2012 - 1 commit
    • Stephen Kelly's avatar
      Store the is-a QObject fact with the metatype declaration. · 4b8ceb41
      Stephen Kelly authored
      
      This is a source incompatible change for Q_DECLARE_METATYPE(T*),
      which now requires T to be fully defined.
      
      The consequences of this are:
       * Forward declared types can no longer be declared as a metatype.
           (though this is a very uncommon thing to do).
      
      There is a trivial workaround where necessary.
      
      Change-Id: Id74c40088b8c0b466fcd7c55abd616f69acc82c8
      Reviewed-by: default avatarLars Knoll <lars.knoll@nokia.com>
      4b8ceb41
  26. 23 Jan, 2012 - 1 commit
  27. 05 Jan, 2012 - 1 commit
  28. 12 Dec, 2011 - 1 commit
    • Honglei Zhang's avatar
      Check driver validity before using it · 67be01ae
      Honglei Zhang authored
      
      Even though it is stated in the documentation that the SQL driver must
      remain valid during the life time of QSqlQuery, there are users who don't
      follow the rule. It's common that the destructor of QSqlQuery is called
      after the driver is already deleted. This fix checks the validity of
      the SQLite driver before QSqliteResult uses it in destructor.
      
      Task-number: QTBUG-16967
      Change-Id: If0f52113f12e14102da1671cd6e12bdaa267114f
      Reviewed-by: default avatarYunqiao Yin <charles.yin@nokia.com>
      67be01ae
  29. 30 Nov, 2011 - 1 commit
    • Honglei Zhang's avatar
      Fix sqlite driver memory eating due to close failure · d34170af
      Honglei Zhang authored
      
      If an ongoing query is not finalized before close function is
      called, sqlite driver still tries to close the connection to
      sqlite. In this case, sqlite reports an error to sqlite driver
      which is not reported to the client. The failure in close causes
      connection to sqlite unclosed and memory is not freed. This
      fix tries to finalize all queries before close function is called.
      The close function should succeed.
      
      Task-number: QTBUG-16967
      Change-Id: I2f10a2a9017446a9d44b693b00464a89625e3602
      Reviewed-by: default avatarYunqiao Yin <charles.yin@nokia.com>
      d34170af
  30. 23 Nov, 2011 - 1 commit
    • Honglei Zhang's avatar
      SQLite support only one statement at a time · 1d3cfdbf
      Honglei Zhang authored
      
      SQLite driver support only one statement at a time. This fix makes the
      exec and prepare call failed if more than one statements are given.
      This is bug fix for QTBUG-21884. Also the behaviour is documented in
      the API specification.
      
      Task-number: QTBUG-21884
      Change-Id: If1e25a0dd9f9ee38961ef478fc7909f6b05e360a
      Reviewed-by: default avatarYunqiao Yin <charles.yin@nokia.com>
      1d3cfdbf
  31. 24 May, 2011 - 1 commit
  32. 27 Apr, 2011 - 1 commit
    • Qt by Nokia's avatar
      Initial import from the monolithic Qt. · 38be0d13
      Qt by Nokia authored
      This is the beginning of revision history for this module. If you
      want to look at revision history older than this, please refer to the
      Qt Git wiki for how to use Git history grafting. At the time of
      writing, this wiki is located here:
      
      http://qt.gitorious.org/qt/pages/GitIntroductionWithQt
      
      If you have already performed the grafting and you don't see any
      history beyond this commit, try running "git log" with the "--follow"
      argument.
      
      Branched from the monolithic repo, Qt master branch, at commit
      896db169ea224deb96c59ce8af800d019de63f12
      38be0d13