summaryrefslogtreecommitdiff
path: root/odb/mysql/details/options.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
commit3a160a80c788d81e48acf19a2cf68f29cf125dae (patch)
tree8bf000b3ae959d56367c15aa214a95d24b096905 /odb/mysql/details/options.cli
parent35bdfb3e3604527f36f046928324346e8b37b46b (diff)
Turn libodb-mysql repository into package for muti-package repositorylibodb-mysql
Diffstat (limited to 'odb/mysql/details/options.cli')
-rw-r--r--odb/mysql/details/options.cli61
1 files changed, 0 insertions, 61 deletions
diff --git a/odb/mysql/details/options.cli b/odb/mysql/details/options.cli
deleted file mode 100644
index 845c292..0000000
--- a/odb/mysql/details/options.cli
+++ /dev/null
@@ -1,61 +0,0 @@
-// file : odb/mysql/details/options.cli
-// license : GNU GPL v2; see accompanying LICENSE file
-
-include <string>;
-
-namespace odb
-{
- namespace mysql
- {
- namespace details
- {
- class options
- {
- std::string --user
- {
- "<name>",
- "MySQL database user."
- };
-
- std::string --password
- {
- "<str>",
- "MySQL database password"
- };
-
- std::string --database
- {
- "<name>",
- "MySQL database name."
- };
-
- std::string --host
- {
- "<addr>",
- "MySQL database host name or address (localhost by default)."
- };
-
- unsigned int --port = 0
- {
- "<integer>",
- "MySQL database port number."
- };
-
- std::string --socket
- {
- "<name>",
- "MySQL database socket name."
- };
-
- 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."
- };
- };
- }
- }
-}