我创建了一个带有一些存储过程的mySQL数据库。使用mySQL Workbench SP可以很好地进行分叉,现在我需要使用c程序启动它们。
我创建了程序,该程序成功连接到我的数据库,并且能够启动不需要参数的程序。
要启动更复杂的过程,我需要在c中使用prepare语句:特别是,我想调用过程esame_cancella(IN code CHAR(5))
并删除表'esame'的选定行。
int status;
MYSQL_RES *result;
MYSQL_ROW row;
MYSQL_FIELD *field;
MYSQL_RES *rs_metadata;
MYSQL_STMT *stmt;
MYSQL_BIND ps_params[6];
unsigned long length[6];
char cod[64];
printf("Codice: ");
scanf ("%s",cod);
length[0] = strlen(cod);
stmt = mysql_stmt_init(conn);
if (stmt == NULL) {
printf("Could not initialize statement\n");
exit(1);
}
status = mysql_stmt_prepare(stmt, "call esame_cancella(?) ", 64);
test_stmt_error(stmt, status); //line which gives me the syntax error
memset(ps_params, 0, sizeof(ps_params));
ps_params[0].buffer_type = MYSQL_TYPE_VAR_STRING;
ps_params[0].buffer = cod;
ps_params[0].buffer_length = 64;
ps_params[0].length = &length[0];
ps_params[0].is_null = 0;
// bind parameters
status = mysql_stmt_bind_param(stmt, ps_params); //muore qui
test_stmt_error(stmt, status);
// Run the stored procedure
status = mysql_stmt_execute(stmt);
test_stmt_error(stmt, status);
}
我使用test_stmt_error
查看mySQL日志调用过程。
static void test_stmt_error(MYSQL_STMT * stmt, int status)
{
if (status) {
fprintf(stderr, "Error: %s (errno: %d)\n",
mysql_stmt_error(stmt), mysql_stmt_errno(stmt));
exit(1);
}
}
当我编译并启动程序时,我有以下日志:
错误:您的SQL语法有错误;检查与您的MySQL服务器版本相对应的手册以获取正确的语法,以在第1行(errno:1064)的''附近使用
有帮助吗?
答案 0 :(得分:0)
似乎传递给mysql_stmt_prepare
的字符串长度是错误的-尝试将64更改为24。
或者更好的方法是尝试:
const char sql_sp[] = "call esame_cancella(?) ";
...
status = mysql_stmt_prepare(stmt, sql_sp, sizeof(sql_sp));