1 /*-------------------------------------------------------------------------
5 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
6 * Portions Copyright (c) 1994, Regents of the University of California
10 *-------------------------------------------------------------------------
13 #include "postgres_fe.h"
15 #include "dumputils.h"
18 static void help(const char *progname
);
22 main(int argc
, char *argv
[])
24 static struct option long_options
[] = {
25 {"host", required_argument
, NULL
, 'h'},
26 {"port", required_argument
, NULL
, 'p'},
27 {"username", required_argument
, NULL
, 'U'},
28 {"no-password", no_argument
, NULL
, 'w'},
29 {"password", no_argument
, NULL
, 'W'},
30 {"echo", no_argument
, NULL
, 'e'},
31 {"interactive", no_argument
, NULL
, 'i'},
39 char *dropuser
= NULL
;
42 char *username
= NULL
;
43 enum trivalue prompt_password
= TRI_DEFAULT
;
45 bool interactive
= false;
52 progname
= get_progname(argv
[0]);
53 set_pglocale_pgservice(argv
[0], PG_TEXTDOMAIN("pgscripts"));
55 handle_help_version_opts(argc
, argv
, "dropuser", help
);
57 while ((c
= getopt_long(argc
, argv
, "h:p:U:wWei", long_options
, &optindex
)) != -1)
71 prompt_password
= TRI_NO
;
74 prompt_password
= TRI_YES
;
83 fprintf(stderr
, _("Try \"%s --help\" for more information.\n"), progname
);
88 switch (argc
- optind
)
93 dropuser
= argv
[optind
];
96 fprintf(stderr
, _("%s: too many command-line arguments (first is \"%s\")\n"),
97 progname
, argv
[optind
+ 1]);
98 fprintf(stderr
, _("Try \"%s --help\" for more information.\n"), progname
);
102 if (dropuser
== NULL
)
103 dropuser
= simple_prompt("Enter name of role to drop: ", 128, true);
107 printf(_("Role \"%s\" will be permanently removed.\n"), dropuser
);
108 if (!yesno_prompt("Are you sure?"))
112 initPQExpBuffer(&sql
);
113 appendPQExpBuffer(&sql
, "DROP ROLE %s;\n", fmtId(dropuser
));
115 conn
= connectDatabase("postgres", host
, port
, username
, prompt_password
, progname
);
118 printf("%s", sql
.data
);
119 result
= PQexec(conn
, sql
.data
);
121 if (PQresultStatus(result
) != PGRES_COMMAND_OK
)
123 fprintf(stderr
, _("%s: removal of role \"%s\" failed: %s"),
124 progname
, dropuser
, PQerrorMessage(conn
));
136 help(const char *progname
)
138 printf(_("%s removes a PostgreSQL role.\n\n"), progname
);
139 printf(_("Usage:\n"));
140 printf(_(" %s [OPTION]... [ROLENAME]\n"), progname
);
141 printf(_("\nOptions:\n"));
142 printf(_(" -e, --echo show the commands being sent to the server\n"));
143 printf(_(" -i, --interactive prompt before deleting anything\n"));
144 printf(_(" --help show this help, then exit\n"));
145 printf(_(" --version output version information, then exit\n"));
146 printf(_("\nConnection options:\n"));
147 printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
148 printf(_(" -p, --port=PORT database server port\n"));
149 printf(_(" -U, --username=USERNAME user name to connect as (not the one to drop)\n"));
150 printf(_(" -w, --no-password never prompt for password\n"));
151 printf(_(" -W, --password force password prompt\n"));
152 printf(_("\nReport bugs to <pgsql-bugs@postgresql.org>.\n"));