summaryrefslogtreecommitdiff
path: root/odb/sqlite/details/options.cli
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/details/options.cli')
-rw-r--r--odb/sqlite/details/options.cli47
1 files changed, 0 insertions, 47 deletions
diff --git a/odb/sqlite/details/options.cli b/odb/sqlite/details/options.cli
deleted file mode 100644
index d1955c3..0000000
--- a/odb/sqlite/details/options.cli
+++ /dev/null
@@ -1,47 +0,0 @@
-// file : odb/sqlite/details/options.cli
-// license : GNU GPL v2; see accompanying LICENSE file
-
-include <string>;
-
-namespace odb
-{
- namespace sqlite
- {
- namespace details
- {
- class options
- {
- std::string --database
- {
- "<filename>",
- "SQLite database file name. If the database file is not specified
- then a private, temporary on-disk database will be created. Use
- the \cb{:memory:} special name to create a private, temporary
- in-memory database."
- };
-
- bool --create
- {
- "Create the SQLite database if it does not already exist. By default
- opening the database fails if it does not already exist."
- };
-
- bool --read-only
- {
- "Open the SQLite database in read-only mode. By default the database
- is opened for reading and writing if possible, or reading only if
- the file is write-protected by the operating system."
- };
-
- 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."
- };
- };
- }
- }
-}