// file : odb/pgsql/details/options.cli // author : Constantin Michael // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file include ; namespace odb { namespace pgsql { namespace details { class options { std::string --user { "", "PostgreSQL database user." }; std::string --password { "", "PostgreSQL database password" }; std::string --dbname { "", "PostgreSQL database name." }; std::string --host { "", "Name of the PostgreSQL host to connect to (localhost by default)." }; std::string --hostaddr { "", "Numeric IP address of host to connect to in dotted-decimal format." }; unsigned int --port = 0 { "", "PostgreSQL database port number." }; }; } } }