~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqldump.c

  • Committer: Stewart Smith
  • Date: 2008-06-30 05:33:25 UTC
  • mfrom: (12.2.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: stewart@flamingspork.com-20080630053325-mwrv6bjaufcpvj8n
merge my work

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
   "Adds 'STOP SLAVE' prior to 'CHANGE MASTER' and 'START SLAVE' to bottom of dump.",
214
214
   (uchar**) &opt_slave_apply, (uchar**) &opt_slave_apply, 0, GET_BOOL, NO_ARG,
215
215
   0, 0, 0, 0, 0, 0},
216
 
#ifdef __NETWARE__
217
 
  {"autoclose", OPT_AUTO_CLOSE, "Auto close the screen on exit for Netware.",
218
 
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
219
 
#endif
220
216
  {"character-sets-dir", OPT_CHARSETS_DIR,
221
217
   "Directory where character sets are.", (uchar**) &charsets_dir,
222
218
   (uchar**) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
404
400
  {"password", 'p',
405
401
   "Password to use when connecting to server. If password is not given it's solicited on the tty.",
406
402
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
407
 
#ifdef __WIN__
408
 
  {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
409
 
   NO_ARG, 0, 0, 0, 0, 0, 0},
410
 
#endif
411
403
  {"port", 'P', "Port number to use for connection.", (uchar**) &opt_mysql_port,
412
404
   (uchar**) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
413
405
   0},
559
551
{
560
552
  printf("%s  Ver %s Distrib %s, for %s (%s)\n",my_progname,DUMP_VERSION,
561
553
         MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
562
 
  NETWARE_SET_SCREEN_MODE(1);
563
554
} /* print_version */
564
555
 
565
556
 
569
560
  printf("OR     %s [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]\n",
570
561
         my_progname);
571
562
  printf("OR     %s [OPTIONS] --all-databases [OPTIONS]\n", my_progname);
572
 
  NETWARE_SET_SCREEN_MODE(1);
573
563
}
574
564
 
575
565
 
712
702
               char *argument)
713
703
{
714
704
  switch (optid) {
715
 
#ifdef __NETWARE__
716
 
  case OPT_AUTO_CLOSE:
717
 
    setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
718
 
    break;
719
 
#endif
720
705
  case 'p':
721
706
    if (argument)
722
707
    {
736
721
                                    MYF(MY_WME))))
737
722
      exit(1);
738
723
    break;
739
 
  case 'W':
740
 
#ifdef __WIN__
741
 
    opt_protocol= MYSQL_PROTOCOL_PIPE;
742
 
#endif
743
 
    break;
744
724
  case 'N':
745
725
    opt_set_charset= 0;
746
726
    break;