diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-15 16:35:47 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-16 11:25:33 +0200 |
commit | 076a61b6c19044a38de8c17b0fefbc74074491f4 (patch) | |
tree | 8e6e0e2ee69f4ccdc5757e866ddab1b39cbd4dcb /qt | |
parent | 7b6ace8f265e12704cc1d7e0c6f26dfe51ea2809 (diff) |
Test containers of Oracle LOB types
Diffstat (limited to 'qt')
-rw-r--r-- | qt/oracle/basic/driver.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt/oracle/basic/driver.cxx b/qt/oracle/basic/driver.cxx index 39f6b41..1afb966 100644 --- a/qt/oracle/basic/driver.cxx +++ b/qt/oracle/basic/driver.cxx @@ -32,6 +32,7 @@ main (int argc, char* argv[]) string long_str (20000, 'l'); object o; + o.varchar = "John Doe"; o.clob = QString::fromStdString (string (150, 'c')); o.nclob = QString::fromStdString (long_str); |