我使用以下代码从模型类
调用存储过程$currentId = 1;
$conn = ConnectionManager::get('default');
$result = $conn->execute("call test_sp($currentId, @msg)")->fetchAll('obj');
我需要访问此存储过程中返回的消息。使用这个时我得到以下错误
If you are using SQL keywords as table column names, you can enable identifier quoting for your database connection in config/app.php.
我试图在app.php中将quoteIdentifiers更改为true但仍然面临问题。请建议我启用自动引用或解决此问题的方法。
注意:在我的表中,我使用了保留关键字作为列名。它无法改变它们。