我正在尝试调用插入新记录并返回最后一个 id 的存储过程。当我调用该页面时,我收到上述错误,参考第 6 行。
$Str = 'Hello world';
$parentId = 1;
$lastId = 0;
$statement = $con->prepare('call createRecordReturnsId( ? , ? )');
$statement->bind_param("si",$Str,$parentId);
$statement->bind_result($lastId);
$statement->execute();