diff options
author | Bernard Normier <bernard@zeroc.com> | 2008-05-05 19:37:41 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2008-05-05 19:37:41 -0400 |
commit | 9adfb21e6f8a8417aef98bc73a77c3e29f81b29f (patch) | |
tree | 105aa606fedfcc913b4e89832ea1290c70c87213 /cpp | |
parent | Fixed bug #3054 (diff) | |
download | ice-9adfb21e6f8a8417aef98bc73a77c3e29f81b29f.tar.bz2 ice-9adfb21e6f8a8417aef98bc73a77c3e29f81b29f.tar.xz ice-9adfb21e6f8a8417aef98bc73a77c3e29f81b29f.zip |
Minor fixes
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/Database/Oracle/occi/README | 6 | ||||
-rwxr-xr-x | cpp/demo/Database/Oracle/occi/createTypes.sql | 5 | ||||
-rw-r--r-- | cpp/demo/Database/Oracle/proc/README | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/cpp/demo/Database/Oracle/occi/README b/cpp/demo/Database/Oracle/occi/README index fd452011dad..2adfac9716f 100644 --- a/cpp/demo/Database/Oracle/occi/README +++ b/cpp/demo/Database/Oracle/occi/README @@ -19,8 +19,8 @@ OCCI is only available for some C++ compilers. Make sure to select a platform and C++ compiler supported by both Ice and OCCI. - Setup an Oracle database with the traditional EMP/DEPT schema. - With Oracle server 10.2, the corresponding SQL script is - $ORACLE_HOME/rdbms/admin/utilsamp.sql. + With Oracle server 10.2 and 11.1, the corresponding SQL script is + $ORACLE_HOME/rdbms/admin/utlsampl.sql. - Ensure that your user (by default, scott) has the CREATE VIEW privilege. @@ -54,7 +54,7 @@ platform and C++ compiler supported by both Ice and OCCI. (make sure to list msvc\vc8 before msvc) - - Executable files: + - Executable files: $(ORACLE_HOME)\oci\lib\msvc\vc8;$(ORACLE_HOME)\bin diff --git a/cpp/demo/Database/Oracle/occi/createTypes.sql b/cpp/demo/Database/Oracle/occi/createTypes.sql index 5fa65b9d723..82fdc0fc025 100755 --- a/cpp/demo/Database/Oracle/occi/createTypes.sql +++ b/cpp/demo/Database/Oracle/occi/createTypes.sql @@ -8,10 +8,9 @@ Rem Rem Create object types and views for the DEPT and EMP tables
Rem
-Rem SET TERMOUT OFF
-SET ECHO
+SET ECHO ON
-CONNECT SCOTT/TIGER@ORCL
+CONNECT scott/tiger@orcl
DROP VIEW EMP_VIEW;
DROP VIEW DEPT_VIEW;
diff --git a/cpp/demo/Database/Oracle/proc/README b/cpp/demo/Database/Oracle/proc/README index 16b6b05ca3c..1bb48c1bd22 100644 --- a/cpp/demo/Database/Oracle/proc/README +++ b/cpp/demo/Database/Oracle/proc/README @@ -35,8 +35,8 @@ Running the demo ---------------- - Setup an Oracle database with the traditional EMP/DEPT schema. - With Oracle server 10.2, the corresponding SQL script is - $ORACLE_HOME/rdbms/admin/utilsamp.sql. + With Oracle server 10.2 or 11.1, the corresponding SQL script is + $ORACLE_HOME/rdbms/admin/utlsampl.sql. - Review the Oracle.ConnectInfo property in the config.server file. You may need to change it to connect to your Oracle instance. |