summaryrefslogtreecommitdiffstats
path: root/tests/auto/qsqldriver/qsqldriver.pro
diff options
context:
space:
mode:
authorBill King <bill.king@nokia.com>2009-06-22 11:26:29 +1000
committerBill King <bill.king@nokia.com>2009-06-22 12:00:48 +1000
commit24d0bee8de27fb148a12efa21d973f4c45e216d0 (patch)
tree701dc82487ca45fabea07c3f3c4a7329093491b5 /tests/auto/qsqldriver/qsqldriver.pro
parentfbe1e69584746e6255b6ea6fede9080c96f5d4e2 (diff)
Fix the behaviour of sql classes regarding quoted identifiers
If no quotes around identifiers are provided by the programmer, identifiers are treated identically to how the underlying engine would behave. i.e. some engines uppercase the identifiers others lowercase them. If the programmer wants case sensitivty and/or use whitespaces they will need to quote their identifiers. The previous (incorrect) behaviour always quoted the identifiers. Originally committed to 4.5, but removed due to BC concerns, this is a reintegration into mainline for inclusion in 4.6 Reviewed-by: Bill King
Diffstat (limited to 'tests/auto/qsqldriver/qsqldriver.pro')
-rw-r--r--tests/auto/qsqldriver/qsqldriver.pro16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/qsqldriver/qsqldriver.pro b/tests/auto/qsqldriver/qsqldriver.pro
new file mode 100644
index 0000000000..0024841e12
--- /dev/null
+++ b/tests/auto/qsqldriver/qsqldriver.pro
@@ -0,0 +1,16 @@
+load(qttest_p4)
+SOURCES += tst_qsqldriver.cpp
+
+QT += sql
+
+wince*: {
+ plugFiles.sources = ../../../plugins/sqldrivers
+ plugFiles.path = .
+ DEPLOYMENT += plugFiles
+} else {
+ win32-g++ {
+ LIBS += -lws2_32
+ } else:win32 {
+ LIBS += ws2_32.lib
+ }
+}