@大家是不是有个疑惑 medoo 当你执行的时候 不会报错是为什么呢
try{
$database->pdo->beginTransaction();
$database->delete("account",["id"=>3]);
if($database->error()[0]!== 0){
throw new Exception();
};
$database->pdo->commit();
}catch (Exception $e){
$database->pdo->rollBack();
exit("Error");
}
$database->error()
打印出来是数组 这就是坑 如果不这写的话 就不会提示错误,以上都是在你执行的时候开启事务锁。提交的时候做个判断