aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/details/options.cli
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/details/options.cli')
-rw-r--r--odb/oracle/details/options.cli62
1 files changed, 62 insertions, 0 deletions
diff --git a/odb/oracle/details/options.cli b/odb/oracle/details/options.cli
new file mode 100644
index 0000000..b8a9531
--- /dev/null
+++ b/odb/oracle/details/options.cli
@@ -0,0 +1,62 @@
+// file : odb/oracle/details/options.cli
+// author : Constantin Michael <constantin@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : ODB NCUEL; see accompanying LICENSE file
+
+include <string>;
+
+namespace odb
+{
+ namespace oracle
+ {
+ namespace details
+ {
+ class options
+ {
+ std::string --user
+ {
+ "<name>",
+ "Oracle database user."
+ };
+
+ std::string --password
+ {
+ "<str>",
+ "Oracle database password."
+ };
+
+ std::string --database
+ {
+ "<connect-id>",
+ "Oracle connect identifier."
+ };
+
+ std::string --service
+ {
+ "<name>",
+ "Oracle service name."
+ };
+
+ std::string --host
+ {
+ "<str>",
+ "Oracle database host name or address (localhost by default)."
+ };
+
+ unsigned int --port
+ {
+ "<str>",
+ "Oracle database port number."
+ };
+
+ std::string --options-file
+ {
+ "<file>"
+ "Read additional options from <file>. Each option appearing on a
+ separate line optionally followed by space and an option value.
+ Empty lines and lines starting with \cb{#} are ignored."
+ };
+ };
+ }
+ }
+}