我正在使用Doctrine 2.5,MySQL 5.6
我的ajax中有一个删除查询,如:
$temp = $db->executeQuery("DELETE FROM user_ban_table WHERE user_id = " . $term . ");
if ($temp) {
echo json_encode(['success' => $temp]);
}
这是为了删除记录但是如何检查记录是否已删除或没有发生?
(在线搜索并且一直在阅读他们的文档,仍然无法获得解决方案)