499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
/* @-comment: # */
static const char zOptions[] =
@ Command-line options common to all commands:
@
@ --args FILENAME Read additional arguments and options from FILENAME
@ --cgitrace Active CGI tracing
@ --comfmtflags VALUE Set comment formatting flags to VALUE
@ --errorlog FILENAME Log errors to FILENAME
@ --help Show help on the command rather than running it
@ --httptrace Trace outbound HTTP requests
@ --localtime Display times using the local timezone
@ --no-th-hook Do not run TH1 hooks
@ --quiet Reduce the amount of output
@ --sqlstats Show SQL usage statistics when done
|
>
|
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
/* @-comment: # */
static const char zOptions[] =
@ Command-line options common to all commands:
@
@ --args FILENAME Read additional arguments and options from FILENAME
@ --cgitrace Active CGI tracing
@ --comfmtflags VALUE Set comment formatting flags to VALUE
@ --comment-format VALUE Alias for --comfmtflags
@ --errorlog FILENAME Log errors to FILENAME
@ --help Show help on the command rather than running it
@ --httptrace Trace outbound HTTP requests
@ --localtime Display times using the local timezone
@ --no-th-hook Do not run TH1 hooks
@ --quiet Reduce the amount of output
@ --sqlstats Show SQL usage statistics when done
|