diff options
author | Charles Yin <charles.yin@nokia.com> | 2010-11-04 02:30:46 (GMT) |
---|---|---|
committer | Charles Yin <charles.yin@nokia.com> | 2010-11-05 06:39:26 (GMT) |
commit | c32ec4e928895a85aa10ce47a73c2bd439e7fc89 (patch) | |
tree | b62b9010b0e2998b13f78c792fe8f89b467b7155 /tests/auto/qsqldatabase | |
parent | 7748f41e2ea5cac25b5d075beb416f89862c23e9 (diff) | |
download | Qt-c32ec4e928895a85aa10ce47a73c2bd439e7fc89.zip Qt-c32ec4e928895a85aa10ce47a73c2bd439e7fc89.tar.gz Qt-c32ec4e928895a85aa10ce47a73c2bd439e7fc89.tar.bz2 |
More fix for QTBUG-14640:oci performance problem with qlonglong
1. OCINumber must be declared & initialized seperately, and the bound OCINumber
values must be hold until the QOCIResultPrivate object is deleted.
2. More auto tests for this bug.
3. Add qulonglong support as well
4. Make the execBatch() works with longlong and ulonglong
Task-number:QTBUG-14640
Reviewed-by: Michael Goddard
Change-Id: I7d8bf1c44ce3aaa15ee85be325a5c98dc3ed3ce1
Diffstat (limited to 'tests/auto/qsqldatabase')
-rw-r--r-- | tests/auto/qsqldatabase/tst_databases.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qsqldatabase/tst_databases.h b/tests/auto/qsqldatabase/tst_databases.h index 5837719..80535df 100644 --- a/tests/auto/qsqldatabase/tst_databases.h +++ b/tests/auto/qsqldatabase/tst_databases.h @@ -208,7 +208,7 @@ public: // addDb( "QOCI8", "//horsehead.nokia.troll.no:1521/ustest.troll.no", "scott", "tiger", "" ); // Oracle 9i on horsehead // addDb( "QOCI8", "//iceblink.nokia.troll.no:1521/ice.troll.no", "scott", "tiger", "" ); // Oracle 8 on iceblink (not currently working) // addDb( "QOCI", "//silence.nokia.troll.no:1521/testdb", "scott", "tiger" ); // Oracle 10g on silence -// addDb( "QOCI", "//oracle10g-nokia.trolltech.com.au:1521/XE", "scott", "tiger" ); // Oracle 10gexpress on xen +// addDb( "QOCI", "//bq-oracle10g.apac.nokia.com:1521/XE", "scott", "tiger" ); // Oracle 10gexpress // This requires a local ODBC data source to be configured( pointing to a MySql database ) // addDb( "QODBC", "mysqlodbc", "troll", "trond" ); |