C++에서 API를 통해 MYSQL의 Query를 실행하는 와중에 commands out of sync you can't run this command now 라는 에러 메시지가 출력되며 Query가 작동하지 않았다. 공식 홈페이지에서는 mysql_use_result()를 사용 하고 mysql_free_result()를 호출해 리소스를 해제하기 전에 또 다시 Query를 시도하면 발생할 수 있다고 한다. 또는 mysql_use_result() 또는 mysql_store_result() 호출하지 않고 데이터를 반환하는 2개의 Query를 실행하려고 할 때도 발생한다고도 한다. https://dev.mysql.com/doc/refman/8.0/en/commands-out-of-sync.html MySQL :..