Which CodeIgniter method checks whether the current database platform supports transactions?

  • $this->db->check_transactions();
  • $this->db->supports_transactions();
  • $this->db->trans_status();
  • $this->db->trans_supported();
The method $this->db->supports_transactions(); checks whether the current database platform supports transactions in CodeIgniter. It returns a boolean value indicating transaction support.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *