$sql='INSERT INTO complaints(complaint_id) values(default)';
$db->query($sql,array());
//get newly added complaint_id
$complaint_id=$db->lastInsertId();
我使用上面的代码从投诉表中获取最后一个插入 ID。但它给出了一个错误,比如
Fatal error: Call to undefined method EMMACore\Utils\DBConnection::lastInsertId() in /h...
有人可以告诉我我的应用程序有什么问题吗?谢谢。