Man page and usage updates

* MDBOPTS=no_memo is not used anywhere; mark deprecated and print a
  warning if enabled

* Mark MDBOPTS=use_index as experimental in the man pages

* MDBOPTS need to be colon separated

* Document new long forms of mdb-queries options
This commit is contained in:
Evan Miller
2021-01-19 16:27:36 -05:00
parent 0aa88f85d5
commit 8c91654426
16 changed files with 49 additions and 47 deletions

View File

@@ -75,7 +75,7 @@ int main (int argc, char **argv) {
GOptionEntry entries[] = {
{"list", 'L', 0, G_OPTION_ARG_NONE, &list_only, "List queries in the database (default if no query name is passed)", NULL},
{"newline", '1', 0, G_OPTION_ARG_NONE, &line_break, "Use newline as the delimiter (used in conjunction with listing)", NULL},
{"delimiter", 'd', 0, G_OPTION_ARG_STRING, &delimiter, "Specify delimiter to use", "delimiter"},
{"delimiter", 'd', 0, G_OPTION_ARG_STRING, &delimiter, "Specify delimiter to use", "delim"},
{NULL}
};
opt_context = g_option_context_new("<file> <query name> - list or export queries from an Access database");