我们正在运行一个C程序,每隔一秒就有一个函数回调。以下是所列代码的片段:
char timeBuf[10],secondBuf1[100],queryBuf1[500],queryBuf2[500];
char buff[20] = {0};
struct timeval tv;
gettimeofday (&tv, NULL);
tv.tv_sec -= 5;
strftime(buff, 20, "%Y-%m-%d %H:%M:%S", localtime(&tv.tv_sec));
printf("\nTime is %s", buff);
sprintf(secondBuf1,"INSERT INTO secondsLog2 (secondLogID , timeStampID ) VALUES (NULL,'%s')",buff);
//printf("Query 1 before executing %s\n",queryBuf1);
if (mysql_query(localConn, secondBuf1))
{
printf("Error in insert of seconds log %s\n",mysql_error(localConn));
exit(1);
}
sprintf(queryBuf1,"SELECT ipDest, portDest, SUM(packetLen), COUNT(ipDest) FROM source1 WHERE timeStamp = '%s' GROUP BY portDest",buff);
printf("\nQuery buf %s",queryBuf1);
if(mysql_query(remoteConn, queryBuf1))
{
printf("Error in first query of select %s\n",mysql_error(remoteConn));
exit(1);
}
localRes1 = mysql_use_result(remoteConn);
while((localRow1 = mysql_fetch_row(localRes1)) !=NULL)
{
sprintf(queryBuf1,"INSERT INTO export1 (iBTID ,timeStampID ,ipDest ,portDest,totalBits, packetCount) VALUES (NULL,'%s','%s','%s',%s,%s)",buff, localRow1[0],localRow1[1],localRow1[2],localRow1[3],localRow1[4]);
printf("Query 1 before executing %s\n",queryBuf1);
if (mysql_query(localConn, queryBuf1))
{
printf("Error in first query of insert %s\n",mysql_error(localConn));
exit(1);
}
}
mysql_free_result(localRes1);
当我运行此脚本时,第二个SELECT
会给我这个错误:命令不同步;你现在不能运行这个命令:
Time is 2012-07-17 00:59:14
Query buf SELECT ipDest, portDest, SUM(packetLen), COUNT(ipDest) FROM source1 WHERE timeStamp = '2012-07-17 00:59:14' GROUP BY portDest
Time is 2012-07-17 00:59:15
Query buf SELECT ipDest, portDest, SUM(packetLen), COUNT(ipDest) FROM source1 WHERE timeStamp = '2012-07-17 00:59:15' GROUP BY portDestError in first query of select Commands out of sync; you can't run this command now
答案 0 :(得分:3)
您需要清除任何将返回结果的查询的结果集。如果您没有使用结果,请拨打:
MYSQL_RES *results;
results = mysql_store_result(localConn);
mysql_free_result(results);
要使用您的结果,请在返回结果的查询后调用mysql_store_result
(或mysql_use_result
),并确保稍后在某些时候使用mysql_free_result
。这应该可以解决CR_COMMANDS_OUT_OF_SYNC
错误的任何问题。
来自mysql_store_result的文件(强调补充):
在调用mysql_query()或mysql_real_query()之后,必须为每个成功生成结果集的语句调用mysql_store_result()或mysql_use_result()(SELECT,SHOW,DESCRIBE,EXPLAIN,CHECK TABLE等等)。完成结果集后,还必须调用mysql_free_result()。