// file : odb/oracle/details/options.cli // license : ODB NCUEL; see accompanying LICENSE file include ; namespace odb { namespace oracle { namespace details { class options { std::string --user { "", "Oracle database user." }; std::string --password { "", "Oracle database password." }; std::string --database { "", "Oracle connect identifier." }; std::string --service { "", "Oracle service name." }; std::string --host { "", "Oracle database host name or address (localhost by default)." }; unsigned int --port { "", "Oracle database port number." }; std::string --options-file { "", "Read additional options from . 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." }; }; } } }