~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Brian Aker
  • Date: 2011-04-19 19:48:56 UTC
  • mfrom: (2281.2.3 drizzle-ga)
  • Revision ID: brian@tangent.org-20110419194856-8ovrsx6ulagus0w6
Merge of build trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
443
443
  const char *name;        /* User printable name of the function. */
444
444
  char cmd_char;        /* msql command character */
445
445
public:
446
 
Commands(const char *in_name,
447
 
         char in_cmd_char,
448
 
         int (*in_func)(string *str,const char *name),
449
 
         bool in_takes_params,
450
 
         const char *in_doc)
451
 
  :
452
 
  name(in_name),
453
 
  cmd_char(in_cmd_char),
454
 
  func(in_func),
455
 
  takes_params(in_takes_params),
456
 
  doc(in_doc)
 
446
  Commands(const char *in_name,
 
447
           char in_cmd_char,
 
448
           int (*in_func)(string *str,const char *name),
 
449
           bool in_takes_params,
 
450
           const char *in_doc) :
 
451
    name(in_name),
 
452
    cmd_char(in_cmd_char),
 
453
    func(in_func),
 
454
    takes_params(in_takes_params),
 
455
    doc(in_doc)
457
456
  {}
458
457
 
459
 
  Commands()
460
 
  :
461
 
  name(),
462
 
  cmd_char(),
463
 
  func(NULL),
464
 
  takes_params(false),
465
 
  doc()
 
458
  Commands() :
 
459
    name(),
 
460
    cmd_char(),
 
461
    func(NULL),
 
462
    takes_params(false),
 
463
    doc()
466
464
  {}
467
465
 
468
466
  int (*func)(string *str,const char *);/* Function to call to do the job. */
540
538
    N_("Set outfile [to_outfile]. Append everything into given outfile.") ),
541
539
  Commands( "use",    'u', com_use,    1,
542
540
    N_("Use another schema. Takes schema name as argument.") ),
543
 
  Commands( "shutdown",    'u', com_shutdown,    1,
 
541
  Commands( "shutdown",    'Q', com_shutdown,    false,
544
542
    N_("Shutdown the instance you are connected too.") ),
545
 
  Commands( "warnings", 'W', com_warnings,  0,
 
543
  Commands( "warnings", 'W', com_warnings,  false,
546
544
    N_("Show warnings after every statement.") ),
547
545
  Commands( "nowarning", 'w', com_nowarnings, 0,
548
546
    N_("Don't show warnings after every statement.") ),