如何在我的模型中进行错误检查?例如,如果我的过程添加了一条记录,我想返回true,如果不是,我想返回false。我是否需要在程序之前和之后对表中的记录进行计数,然后比较它们哪种方法最好?
function add_student($SECTION_ID, $STUDENT_ID)
{
$this->db->query("call add_student('$SECTION_ID','$STUDENT_ID')");
}
function drop_student($SECTION_ID, $STUDENT_ID)
{
$this->db->query("call drop_student('$SECTION_ID','$STUDENT_ID')");
}
答案 0 :(得分:1)