~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlimport.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:
67
67
 
68
68
static struct my_option my_long_options[] =
69
69
{
70
 
#ifdef __NETWARE__
71
 
  {"autoclose", OPT_AUTO_CLOSE, "Auto close the screen on exit for Netware.",
72
 
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
73
 
#endif
74
70
  {"character-sets-dir", OPT_CHARSETS_DIR,
75
71
   "Directory where character sets are.", (uchar**) &charsets_dir,
76
72
   (uchar**) &charsets_dir, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
132
128
  {"password", 'p',
133
129
   "Password to use when connecting to server. If password is not given it's asked from the tty.",
134
130
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
135
 
#ifdef __WIN__
136
 
  {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
137
 
   NO_ARG, 0, 0, 0, 0, 0, 0},
138
 
#endif
139
131
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
140
132
   "order of preference, my.cnf, $MYSQL_TCP_PORT, "
141
133
#if MYSQL_PORT_DEFAULT == 0
184
176
{
185
177
  printf("%s  Ver %s Distrib %s, for %s (%s)\n" ,my_progname,
186
178
          IMPORT_VERSION, MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
187
 
  NETWARE_SET_SCREEN_MODE(1);
188
179
}
189
180
 
190
181
 
213
204
               char *argument)
214
205
{
215
206
  switch(optid) {
216
 
#ifdef __NETWARE__
217
 
  case OPT_AUTO_CLOSE:
218
 
    setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
219
 
    break;
220
 
#endif
221
207
  case 'p':
222
208
    if (argument)
223
209
    {
232
218
    else
233
219
      tty_password= 1;
234
220
    break;
235
 
#ifdef __WIN__
236
 
  case 'W':
237
 
    opt_protocol = MYSQL_PROTOCOL_PIPE;
238
 
    opt_local_file=1;
239
 
    break;
240
 
#endif
241
221
  case OPT_MYSQL_PROTOCOL:
242
222
    opt_protocol= find_type_or_exit(argument, &sql_protocol_typelib,
243
223
                                    opt->name);