aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/details/options.cli
blob: 925cef36bca4cef8ccdd66aec45cce30a2ebc0ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// file      : odb/pgsql/details/options.cli
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

include <string>;

namespace odb
{
  namespace pgsql
  {
    namespace details
    {
      class options
      {
        std::string --user
        {
          "<name>",
          "PostgreSQL database user."
        };

        std::string --password
        {
          "<str>",
          "PostgreSQL database password"
        };

        std::string --dbname
        {
          "<name>",
          "PostgreSQL database name."
        };

        std::string --host
        {
          "<addr>",
          "Name of the PostgreSQL host to connect to (localhost by default)."
        };

        std::string --hostaddr
        {
          "<addr>",
          "Numeric IP address of host to connect to in dotted-decimal format."
        };

        unsigned int --port = 0
        {
          "<integer>",
          "PostgreSQL database port number."
        };
      };
    }
  }
}