summaryrefslogtreecommitdiff
path: root/odb/oracle/details/options.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-02-01 15:47:37 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-02-01 15:47:37 +0300
commit62e234c114d2b6ead93a1d39593c66b648c3d0a6 (patch)
treece6740b4508eb29400490b20efc8e100e38a7b7f /odb/oracle/details/options.cli
parent9072842a023c4b65ecb141292c4b63417fee1b98 (diff)
Turn libodb-oracle repository into package for muti-package repositorylibodb-oracle
Diffstat (limited to 'odb/oracle/details/options.cli')
-rw-r--r--odb/oracle/details/options.cli61
1 files changed, 0 insertions, 61 deletions
diff --git a/odb/oracle/details/options.cli b/odb/oracle/details/options.cli
deleted file mode 100644
index 82be308..0000000
--- a/odb/oracle/details/options.cli
+++ /dev/null
@@ -1,61 +0,0 @@
-// file : odb/oracle/details/options.cli
-// 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
- {
- "<conn-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
- {
- "<integer>",
- "Oracle database port number."
- };
-
- std::string --options-file
- {
- "<file>",
- "Read additional options from <file>. Each option should appear on a
- separate line optionally followed by space or equal sign (\cb{=})
- and an option value. Empty lines and lines starting with \cb{#} are
- ignored."
- };
- };
- }
- }
-}