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?
http://php.net/manual/en/mysqli.autocommit.php
It seems silly to determine if it's on and if not turn it on though.
Another way would be using:
Also autocommit among other variables are on a per-connection basis, you setting autocommit to true will not affect any other connections. The only way to find what the default value is, is by checking right when the connection is made (before changing the state).