这是我的代码,我试图在数据库中的sma中插入ma,但错误发生为:
太多参数无法使用功能'int mysql_query(MYSQL *,const char *)'
注意在mysql.h中声明
mysql.h中的行:int STDCALL mysql_query(MYSQL * mysql,const char * q);
while(true)
{
mysql_query(conn, " select close, id from fivemin order by id DESC LIMIT 5 ");
result = mysql_store_result(conn);
num_fields = mysql_num_fields(result);
float sum = 0;
while((row=mysql_fetch_row(result)))
{
sum += atof(row[0]);
last_id = atoi(row[1]);
}
float ma;
ma=sum/5.0;
if(previous_last_id != last_id)
{
cout << "Simple moving Average: " << ma << endl;
previous_last_id = last_id;
}
mysql_query(conn,("insert into sma values('%f')"),ma);
Sleep(1000);
}
最佳答案
mysql_query(conn,("insert into sma values('%f')"),ma)
具有三个参数。
您需要先格式化字符串,然后再调用mysql_query.
例:
char str[80];
sprintf(str, "insert into sma values('%f')", ma);
mysql_query(conn, str);
关于c++ - C++ MySQL插入数据库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44427128/