aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/details/options.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-18 12:35:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-18 12:35:53 +0200
commitacff75b62b48f9a121d935e1f59ddc465145618c (patch)
tree3a82b256f3f4b75c17a9013d0f158183383105cb /odb/sqlite/details/options.cli
parent35c31a19f90608df19f0c4aa077dcbbe5150d3e4 (diff)
Development build system setup
Diffstat (limited to 'odb/sqlite/details/options.cli')
-rw-r--r--odb/sqlite/details/options.cli48
1 files changed, 48 insertions, 0 deletions
diff --git a/odb/sqlite/details/options.cli b/odb/sqlite/details/options.cli
new file mode 100644
index 0000000..a0af101
--- /dev/null
+++ b/odb/sqlite/details/options.cli
@@ -0,0 +1,48 @@
+// file : odb/sqlite/details/options.cli
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// 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 --database-create
+ {
+ "Create the SQLite database if it does not already exist. By default
+ opening the database fails if it does not already exist."
+ };
+
+ bool --database-readonly
+ {
+ "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 appearing on a
+ separate line optionally followed by space and an option value.
+ Empty lines and lines starting with \cb{#} are ignored."
+ };
+ };
+ }
+ }
+}