// file : odb/oracle/details/options.cli // copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC // 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 appearing on a separate line optionally followed by space and an option value. Empty lines and lines starting with \cb{#} are ignored." }; }; } } }