我正在使用嵌入式 C:以下查询返回一个奇怪的 SQLcode -284
EXEC SQL
select *
into :xx
from xx
where ....
if (SQLCODE < 0)
{
err_log( "code %ld sqlerrmc %s",sqlca.sqlerrm.sqlerrml,sqlca.sqlerrm.sqlerrmc);
db_error("");
return -1;
}
错误日志是:code 4 sqlerrmc SQL error -284 on line 2803
你能支持我吗?