728x90
반응형
ci3 ci4 트랜잭션 비교
-
CI3 트랜잭션 (transaction)CI3 2022. 9. 30. 18:42
# 트랜잭션 시작 $this->db->trans_start(); # 트랜잭션 완료 $this->db->trans_complete(); #트랜잭션 엄격모드 비활성화 $this->db->trans_strict(false); #트랜잭션 수동처리 $this->db->trans_begin(); $this->db->query("YOUR QUERY"); if ($this->db->trans_status() === FALSE){ $this->db->trans_rollback(); } else { $this->db->trans_commit(); } # CI3 & CI4 Transaction 처리 CI3 CI4 트랜잭션 시작 trans_start() transStart() 트랜잭션 완료 trans_complete() tr..