57
58
static bool verbose= false, lock_tables= false, ignore_errors= false,
58
59
opt_delete= false, opt_replace= false, silent= false,
59
ignore_unique= false, opt_low_priority= false,
60
tty_password= false, opt_mysql= false;
62
static uint32_t opt_use_threads= 0, opt_local_file= 0;
60
ignore_unique= false, opt_compress= false, opt_low_priority= false,
62
static bool debug_info_flag= false, debug_check_flag= false;
63
static uint32_t opt_use_threads= 0, opt_local_file= 0, my_end_arg= 0;
63
64
static char *opt_password= NULL, *current_user= NULL,
64
65
*current_host= NULL, *current_db= NULL, *fields_terminated= NULL,
65
66
*lines_terminated= NULL, *enclosed= NULL, *opt_enclosed= NULL,
66
67
*escaped= NULL, *opt_columns= NULL;
67
68
static uint32_t opt_drizzle_port= 0;
69
static char * opt_drizzle_unix_port= 0;
68
70
static int64_t opt_ignore_lines= -1;
70
static struct option my_long_options[] =
72
static struct my_option my_long_options[] =
73
75
"Use only these columns to import the data to. Give the column names in a comma separated list. This is same as giving columns to LOAD DATA INFILE.",
74
76
(char**) &opt_columns, (char**) &opt_columns, 0, GET_STR, REQUIRED_ARG, 0, 0, 0,
78
{"compress", 'C', "Use compression in server/client protocol.",
79
(char**) &opt_compress, (char**) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
76
81
{"debug",'#', "Output debug log. Often this is 'd:t:o,filename'.", 0, 0, 0,
77
82
GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
83
{"debug-check", OPT_DEBUG_CHECK, "Check memory and open file usage at exit.",
84
(char**) &debug_check_flag, (char**) &debug_check_flag, 0,
85
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
86
{"debug-info", OPT_DEBUG_INFO, "Print some debug info at exit.",
87
(char**) &debug_info_flag, (char**) &debug_info_flag,
88
0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
78
89
{"delete", 'd', "First delete all rows from table.", (char**) &opt_delete,
79
90
(char**) &opt_delete, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
80
91
{"fields-terminated-by", OPT_FTB,
112
123
{"low-priority", OPT_LOW_PRIORITY,
113
124
"Use LOW_PRIORITY when updating the table.", (char**) &opt_low_priority,
114
125
(char**) &opt_low_priority, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
115
{"mysql", 'm', N_("Use MySQL Protocol."),
116
(char**) &opt_mysql, (char**) &opt_mysql, 0, GET_BOOL, NO_ARG, 1, 0, 0,
118
126
{"password", 'P',
119
127
"Password to use when connecting to server. If password is not given it's asked from the tty.",
120
128
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
128
136
(char**) &opt_replace, (char**) &opt_replace, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
129
137
{"silent", 's', "Be more silent.", (char**) &silent, (char**) &silent, 0,
130
138
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
139
{"socket", 'S', "Socket file to use for connection.",
140
(char**) &opt_drizzle_unix_port, (char**) &opt_drizzle_unix_port, 0, GET_STR,
141
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
131
142
{"use-threads", OPT_USE_THREADS,
132
143
"Load files in parallel. The argument is the number "
133
144
"of threads to use for loading data.",
164
175
read the text file directly. In other cases the client will open the text\n\
165
176
file. The SQL command 'LOAD DATA INFILE' is used to import the rows.\n");
167
printf("\nUsage: %s [OPTIONS] database textfile...",internal::my_progname);
168
internal::print_defaults("drizzle",load_default_groups);
178
printf("\nUsage: %s [OPTIONS] database textfile...",my_progname);
179
print_defaults("drizzle",load_default_groups);
169
180
my_print_help(my_long_options);
170
181
my_print_variables(my_long_options);
173
static int get_one_option(int optid, const struct option *, char *argument)
184
bool get_one_option(int optid, const struct my_option *, char *argument)
175
186
char *endchar= NULL;
176
187
uint64_t temp_drizzle_port= 0;
275
290
drizzle_result_st result;
276
291
drizzle_return_t ret;
278
internal::fn_format(tablename, filename, "", "", 1 | 2); /* removes path & ext. */
293
fn_format(tablename, filename, "", "", 1 | 2); /* removes path & ext. */
279
294
if (!opt_local_file)
280
295
strcpy(hard_path,filename);
282
internal::my_load_path(hard_path, filename, NULL); /* filename includes the path */
297
my_load_path(hard_path, filename, NULL); /* filename includes the path */
287
302
fprintf(stdout, "Deleting the old data from table %s\n", tablename);
288
303
#ifdef HAVE_SNPRINTF
289
snprintf(sql_statement, sizeof(sql_statement), "DELETE FROM %s", tablename);
304
snprintf(sql_statement, FN_REFLEN*16+256, "DELETE FROM %s", tablename);
291
snprintf(sql_statement, sizeof(sql_statement), "DELETE FROM %s", tablename);
306
sprintf(sql_statement, "DELETE FROM %s", tablename);
293
308
if (drizzle_query_str(con, &result, sql_statement, &ret) == NULL ||
294
309
ret != DRIZZLE_RETURN_OK)