Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用自定义查询手动更新我的数据库,如下所示:
$this->Model->query("UPDATE table SET attribute='1' WHERE condition='". $variable);
一切都很好,工作正常。但是如何检查结果(在这种情况下是更新)是否成功?
我需要检查它是否成功,所以我可以在它之后重定向,并向用户发布一条消息。
查询执行后返回真还是假?
根据文档,query返回:
query
指示成功/失败的数组或布尔值,具体取决于执行的查询
使用您自己的代码进行测试或在文档中查找大约需要 4 秒。