The MUSH I'm working on as an addon to use MYSQL mushside. After investigating, I found that the calling function is:
int sql_query(dbref player, char *q_string, char row_delim, char field_delim, char *buff, char **bp)
Now, I'm pretty sure I understand the first four args, but I'm confused about the last two. What sort variables do I need to declare to send into the function? Thanks
int sql_query(dbref player, char *q_string, char row_delim, char field_delim, char *buff, char **bp)
Now, I'm pretty sure I understand the first four args, but I'm confused about the last two. What sort variables do I need to declare to send into the function? Thanks