// file : odb/pgsql/details/options.cli // copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file include ; namespace odb { namespace pgsql { namespace details { class options { std::string --user | --username { "", "PostgreSQL database user." }; std::string --password { "", "PostgreSQL database password." }; std::string --database | --dbname { "", "PostgreSQL database name." }; std::string --host { "", "PostgreSQL database host name or address (localhost by default)." }; std::string --port { "", "PostgreSQL database port number or socket file name extension for Unix-domain connections." }; 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." }; }; } } }