static void *mysql_ptr = NULL;
-
static int com_cam(int, int, char **);
static int com_cdb(int, int, char **);
static int com_cs(int, int, char **);
if (argc < 1)
return -E_MYSQL_SYNTAX;
- result = get_result(argv[1]);
+ result = get_result(argv[1]);
if (!result)
/* return success, because it's ok to have no results */
return 1;
mysql_free_result(result);
return NULL;
}
- mysql_data_seek(result, 4); /* skip Lastplayed, Numplayed... */
+ mysql_data_seek(result, 4); /* skip Lastplayed, Numplayed... */
return result;
}
q = make_message("select name, to_days(now()) - to_days(lastplayed) from "
"data%s%s%s order by lastplayed",
(argc < 1)? "" : " where ",
- (argc < 1)? "" : argv[1],
+ (argc < 1)? "" : argv[1],
(argc < 1)? "" : " = '1'");
- result = get_result(q);
+ result = get_result(q);
free(q);
if (!result)
return -E_NORESULT;
}
mysql_free_result(result);
ret = -E_NORESULT;
- result = get_result(query);
+ result = get_result(query);
if (!result)
goto out;
ret = -E_EMPTY_RESULT;
num_fields = mysql_num_fields(result);
if (num_fields < 5)
goto out;
- mysql_data_seek(result2, 4); /* skip Lastplayed, Numplayed... */
+ mysql_data_seek(result2, 4); /* skip Lastplayed, Numplayed... */
row = mysql_fetch_row(result);
ret = -E_NOROW;
if (!row)
goto out;
if (atts && (verbose || is_set))
atts = para_strcat(atts, verbose? "," : " ");
- if (is_set || verbose)
+ if (is_set || verbose)
atts = para_strcat(atts, row2[0]);
if (verbose)
atts = para_strcat(atts, is_set? "=\"1\"" : "=\"0\"");
- }
+ }
ret = 1;
out:
if (result2)
goto out;
q = make_message(verbose? verbose_fmt : fmt, ebn);
free(ebn);
- result = get_result(q);
+ result = get_result(q);
free(q);
if (!result)
goto out;
goto write_query;
}
select_clause = para_strdup(with_path?
- "select concat(dir.dir, '/', dir.name) from data, dir "
- "where dir.name = data.name "
- :
- "select name from data where name is not NULL");
+ "select concat(dir.dir, '/', dir.name) from data, dir "
+ "where dir.name = data.name "
+ :
+ "select name from data where name is not NULL");
order = make_message("order by -(%s)", score);
free(score);
if (accept_opts && deny_opts) {
argv[1]);
else
q = para_strdup("select name from data");
- result = get_result(q);
+ result = get_result(q);
free(q);
if (!result)
return -E_NORESULT;
char *buf = make_message(fmt, name);
int ret = -E_NORESULT;
- result = get_result(buf);
+ result = get_result(buf);
free(buf);
if (!result)
goto out;
else
i = match < num_rows - 1? match + 1 : 0;
ret = -E_NOROW;
- mysql_data_seek(result, i);
+ mysql_data_seek(result, i);
row = mysql_fetch_row(result);
if (!row || !row[0])
goto out;