I'm just wondering as per the title if this can be done? For example, if I was to do something like this:
$this->db->autocommit(false);
But then afterwards I wanted to set it back to it's default value; I can't just assume it's defaults to true and do this:
$this->db->autocommit(true);
I would like to reset it back to it's default value if possible; or what do other people do when wanting a single query to auto commit? Do you always run:
$this->db->autocommit(true);
...before the query to make sure that autocommit
is on?