while ((row = mysql_fetch_row(res)) != NULL) {
sprintf(statement, "DELETE FROM `outgoing` WHERE `outgoing`.`id`=%s", row[0]);
if (mysql_query(conn, statement)) {
fprintf(stderr, "%s\n", mysql_error(conn));
}
}
私は取得していますCommands out of sync; you can't run this command now
エラー(RES)
あなたの一重引用符は正しい一重引用符ではありません。それは違いない '。 –
引用符は正しいです。 –
もっとコードを投稿してください。特に、最初の 'mysql_query'を表示してください。 –